/* 
   TNCLAB Premium Web Application Style Sheet
   Architectural Dark/Light Hybrid Theme with Scientific Blue & Cool Slate Accents
   Version: 3.0.0 (Laboratory Engineering Edition)
*/

/* ----------------------------------------------------
   1. CORE VARIABLES & RESET
---------------------------------------------------- */
:root {
    --primary: #0284c7;        /* Scientific Cobalt Blue */
    --primary-light: #38bdf8;  /* Bright Sky Blue */
    --primary-dark: #0369a1;   /* Deep Blue */
    --dark-bg: #0f172a;        /* Slate Dark */
    --dark-surface: #1e293b;   /* Slate Card Surface */
    --light-bg: #f8fafc;       /* Ice Blue Surface */
    --white: #ffffff;
    --text-dark: #0f172a;      /* Slate Dark Text */
    --text-light: #f1f5f9;     /* Light Text */
    --text-muted: #64748b;     /* Slate Muted Text */
    --border-color: #cbd5e1;   /* Light Border */
    --border-dark: #334155;    /* Dark Border */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 10px 25px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.12);
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --font-heading: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

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

/* ----------------------------------------------------
   2. BUTTONS & UTILITIES
---------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 6px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
}

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

.btn-primary:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(2, 132, 199, 0.25);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.25);
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--dark-bg);
    border-color: var(--white);
    transform: translateY(-2px);
}

.btn-nav-cta {
    padding: 8px 18px;
    font-size: 0.85rem;
    border-radius: 4px;
    background-color: var(--primary);
    color: var(--white);
}

.btn-nav-cta:hover {
    background-color: var(--primary-light);
}

/* Section Titles */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.sub-title {
    display: inline-block;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 12px;
    text-transform: uppercase;
    position: relative;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.3;
    margin-bottom: 16px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.05rem;
}

.section-title {
    margin-bottom: 24px;
}

.section-title h2 {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.3;
}

.badge {
    display: inline-block;
    padding: 6px 14px;
    background-color: rgba(2, 132, 199, 0.1);
    border-left: 3px solid var(--primary);
    color: var(--primary-light);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

/* ----------------------------------------------------
   3. HEADER & NAVIGATION BAR
---------------------------------------------------- */
.top-bar {
    background-color: var(--dark-bg);
    border-bottom: 1px solid var(--border-dark);
    padding: 8px 0;
    font-size: 0.8rem;
    color: var(--text-light);
}

.top-bar-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-info {
    display: flex;
    gap: 24px;
}

.top-info span i {
    color: var(--primary-light);
    margin-right: 6px;
}

.top-info a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

.top-info a:hover {
    color: var(--primary-light);
}

.top-social {
    display: flex;
    gap: 16px;
}

.top-social a {
    color: var(--text-light);
    transition: var(--transition);
}

.top-social a:hover {
    color: var(--primary-light);
}

/* Navbar */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid #e2e8f0;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
    background-color: rgba(255, 255, 255, 0.98);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    gap: 16px;
}

.logo {
    display: flex;
    align-items: center;
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--text-dark);
    text-decoration: none;
    letter-spacing: -0.5px;
    flex-shrink: 0;
}

.logo-accent {
    color: var(--primary);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2px;
    flex-wrap: nowrap;
    align-items: center;
    flex: 1;
    justify-content: center;
    padding: 0 12px;
}

.nav-menu li {
    flex-shrink: 0;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.78rem;
    transition: var(--transition);
    position: relative;
    white-space: nowrap;
    padding: 6px 9px;
    border-radius: 6px;
    letter-spacing: 0.01em;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 9px;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition);
    border-radius: 2px;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: calc(100% - 18px);
}

.nav-link:hover {
    color: var(--primary-dark);
    background: rgba(2, 132, 199, 0.06);
}

.nav-link.active {
    color: var(--primary-dark);
    background: rgba(2, 132, 199, 0.08);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.search-toggle-btn {
    background: none;
    border: none;
    font-size: 1rem;
    color: var(--text-dark);
    cursor: pointer;
    transition: var(--transition);
}

.search-toggle-btn:hover {
    color: var(--primary);
}

/* Dropdown Menü */
.nav-dropdown {
    position: relative;
}

.nav-more-btn {
    background: none;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    /* Inherit all nav-link styles */
    text-decoration: none;
    color: var(--text-dark);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.78rem;
    transition: var(--transition);
    position: relative;
    white-space: nowrap;
    padding: 6px 9px;
    border-radius: 6px;
    letter-spacing: 0.01em;
    line-height: 1;
}

.nav-more-btn:hover {
    color: var(--primary-dark);
    background: rgba(2, 132, 199, 0.06);
}

.nav-dropdown.open .nav-more-btn {
    color: var(--primary-dark);
    background: rgba(2, 132, 199, 0.08);
}

.nav-chevron {
    font-size: 0.6rem;
    transition: transform 0.3s ease;
    margin-top: 1px;
}

.nav-dropdown.open .nav-chevron {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 8px;
    min-width: 220px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 200;
}

.nav-dropdown.open .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 8px;
    color: var(--text-dark);
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.nav-dropdown-link i {
    width: 18px;
    text-align: center;
    color: var(--primary);
    font-size: 0.85rem;
}

.nav-dropdown-link:hover {
    background: #f0f9ff;
    color: var(--primary);
}

/* Dropdown menu triangle arrow */
.nav-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -6px;
    right: 24px;
    width: 12px;
    height: 12px;
    background: var(--white);
    border-top: 1px solid var(--border-color);
    border-left: 1px solid var(--border-color);
    transform: rotate(45deg);
}


.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    cursor: pointer;
}

.hamburger span {
    width: 100%;
    height: 2px;
    background-color: var(--text-dark);
    transition: var(--transition);
}

/* Search Panel */
.search-panel {
    position: fixed;
    top: -100px;
    left: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: var(--shadow-md);
    z-index: 1001;
    padding: 24px 0;
    transition: var(--transition);
    border-bottom: 2px solid var(--primary);
}

.search-panel.open {
    top: 0;
}

.search-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    padding: 0 24px;
}

.search-container input {
    flex: 1;
    border: none;
    background: none;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    padding: 8px 16px;
    color: var(--text-dark);
    outline: none;
}

.search-close-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-muted);
    transition: var(--transition);
}

.search-close-btn:hover {
    color: var(--primary);
}

/* ----------------------------------------------------
   4. HERO SLIDER SECTION
---------------------------------------------------- */
.hero {
    position: relative;
    height: calc(100vh - 120px);
    min-height: 580px;
    background-color: var(--dark-bg);
    overflow: hidden;
    display: flex;
    align-items: center;
}

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

.hero-slider .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.08);
    transition: opacity 1.2s ease, transform 6s ease;
    z-index: 1;
}

.hero-slider .slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
}

.hero-content-wrapper {
    position: relative;
    z-index: 3;
    width: 100%;
}

.hero-content {
    max-width: 750px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.6rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 24px;
}

.hero-title span {
    color: var(--primary-light);
    background: linear-gradient(135deg, var(--primary-light), #38bdf8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 36px;
    max-width: 650px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-indicators {
    position: absolute;
    bottom: 40px;
    right: 40px;
    z-index: 3;
    display: flex;
    gap: 12px;
}

.hero-indicators .indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition);
}

.hero-indicators .indicator.active {
    background-color: var(--primary);
    transform: scale(1.3);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    color: var(--white);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
    cursor: pointer;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ----------------------------------------------------
   5. ABOUT (KURUMSAL) SECTION
---------------------------------------------------- */
.about {
    padding: 100px 0;
    background-color: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image .image-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    transition: var(--transition);
}

.about-image img:hover {
    transform: scale(1.03);
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background-color: var(--dark-bg);
    border-left: 4px solid var(--primary);
    padding: 24px 30px;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    box-shadow: var(--shadow-lg);
    z-index: 2;
}

.experience-badge .number {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-light);
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.about-content .lead-text {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.about-content p {
    color: var(--text-muted);
    margin-bottom: 30px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.feature-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.feature-item .icon {
    font-size: 1.5rem;
    color: var(--primary);
    margin-top: 3px;
}

.feature-item h4 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.feature-item p {
    margin-bottom: 0;
    font-size: 0.9rem;
}

/* ----------------------------------------------------
   6. WHY US (NEDEN BİZ) SECTION
---------------------------------------------------- */
.why-us {
    padding: 100px 0;
    background-color: var(--light-bg);
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.why-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 8px;
    border-bottom: 3px solid transparent;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.why-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(2, 132, 199, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--primary);
    margin-bottom: 24px;
    transition: var(--transition);
}

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

.why-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 14px;
    color: var(--text-dark);
}

.why-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* ----------------------------------------------------
   7. SECTORAL SOLUTIONS (SEKTÖREL ÇÖZÜMLER)
---------------------------------------------------- */
.sectoral {
    padding: 100px 0;
    background-color: var(--white);
}

.sector-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 50px;
    flex-wrap: wrap;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 20px;
}

.sector-tab-btn {
    background: none;
    border: none;
    padding: 12px 24px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-muted);
    cursor: pointer;
    position: relative;
    transition: var(--transition);
}

.sector-tab-btn::after {
    content: '';
    position: absolute;
    bottom: -21px;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--primary);
    transition: var(--transition);
}

.sector-tab-btn.active::after {
    width: 100%;
}

.sector-tab-btn.active,
.sector-tab-btn:hover {
    color: var(--primary-dark);
}

.sector-tab-content {
    display: none;
    animation: fadeIn 0.6s ease;
}

.sector-tab-content.active {
    display: block;
}

.sector-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
}

.sector-text h3 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 18px;
}

.sector-text p {
    color: var(--text-muted);
    margin-bottom: 24px;
}

.sector-list {
    list-style: none;
    margin-bottom: 30px;
}

.sector-list li {
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: var(--text-dark);
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.sector-list li i {
    color: var(--primary);
    margin-top: 4px;
    font-size: 1.1rem;
}

.sector-image img {
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    height: 380px;
    width: 100%;
    object-fit: cover;
}

/* ----------------------------------------------------
   8. SERVICES (ÜRÜNLERİMİZ) SECTION
---------------------------------------------------- */
.services {
    padding: 100px 0;
    background-color: var(--light-bg);
}

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

.service-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

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

.service-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

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

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

.service-content {
    padding: 40px 30px;
    position: relative;
}

.service-icon-box {
    position: absolute;
    top: -30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: var(--primary);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.service-card:hover .service-icon-box {
    transform: translateY(-5px);
    background-color: var(--dark-bg);
    color: var(--primary-light);
}

.service-content h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 750;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.service-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 24px;
}

.service-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
}

.service-features li {
    font-size: 0.9rem;
    color: var(--text-dark);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-features li i {
    color: var(--primary);
    font-size: 1rem;
}

/* ----------------------------------------------------
   9. INTERACTIVE LAB BENCH WORKTOP SELECTOR
---------------------------------------------------- */
.simulator-section {
    padding: 100px 0;
    background-color: var(--white);
}

.simulator-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.simulator-viewer {
    background-color: var(--light-bg);
    border-radius: 12px;
    padding: 50px 30px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cabin-mockup-wrapper {
    width: 100%;
    max-width: 380px;
    height: 400px;
    background-color: var(--white);
    border-radius: 8px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding: 30px;
    position: relative;
    overflow: hidden;
}

.cabin-system.lab-bench-mockup {
    position: relative;
    width: 280px;
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
}

/* Custom CSS drawing for moduler lab table */
.bench-frame {
    position: absolute;
    bottom: 0;
    width: 250px;
    height: 220px;
    border: 3px solid #64748b; /* C-Frame Slate profile */
    border-top: none;
    border-radius: 4px;
    z-index: 2;
}

.bench-worktop {
    position: absolute;
    bottom: 220px;
    width: 270px;
    height: 25px;
    border-radius: 4px;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: var(--transition);
}

.worktop-label {
    font-size: 0.65rem;
    font-weight: 800;
    color: #1e293b;
    letter-spacing: 0.5px;
    opacity: 0.7;
}

.bench-cabinet {
    position: absolute;
    bottom: 10px;
    width: 190px;
    height: 180px;
    background-color: #f1f5f9; /* drawer body */
    border: 1px solid #cbd5e1;
    border-radius: 4px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    padding: 10px;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.05);
}

.cabinet-handle {
    width: 100px;
    height: 8px;
    background-color: #94a3b8;
    border-radius: 4px;
    margin: 0 auto;
}

.bench-service-channel {
    position: absolute;
    bottom: 245px;
    width: 240px;
    height: 40px;
    background-color: #e2e8f0;
    border: 1px solid #cbd5e1;
    border-radius: 4px;
    z-index: 3;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 5px;
}

.bench-service-channel .socket {
    width: 24px;
    height: 24px;
    background-color: #475569;
    border-radius: 3px;
    position: relative;
}

.bench-service-channel .socket::after {
    content: '';
    position: absolute;
    top: 6px;
    left: 6px;
    width: 12px;
    height: 12px;
    background-color: #f1f5f9;
    border-radius: 50%;
}

.viewer-legend {
    margin-top: 20px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Controls Panel */
.simulator-controls {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.control-group h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 750;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.sim-hardware-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sim-hw-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
}

.sim-hw-label input {
    margin-top: 6px;
    accent-color: var(--primary);
}

.hw-card-inner {
    display: flex;
    flex-direction: column;
}

.hw-card-inner strong {
    font-size: 0.95rem;
    color: var(--text-dark);
}

.hw-card-inner .desc {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.performance-metrics {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.metric-bar-wrapper {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.metric-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
}

.metric-track {
    width: 100%;
    height: 8px;
    background-color: #e2e8f0;
    border-radius: 4px;
    overflow: hidden;
}

.metric-fill {
    height: 100%;
    background-color: var(--primary);
    border-radius: 4px;
    transition: var(--transition);
}

.simulator-summary {
    background-color: var(--light-bg);
    padding: 24px;
    border-radius: 8px;
    border-left: 4px solid var(--primary);
}

.simulator-summary p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 16px;
}

/* ----------------------------------------------------
   10. TECHNICAL SPECS SECTION
---------------------------------------------------- */
.specs-section {
    padding: 100px 0;
    background-color: var(--light-bg);
}

.specs-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 50px;
    align-items: center;
}

.specs-content p {
    color: var(--text-muted);
    margin-bottom: 30px;
}

.tech-table-wrapper {
    overflow-x: auto;
    box-shadow: var(--shadow-sm);
    border-radius: 8px;
}

.tech-table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--white);
    text-align: left;
}

.tech-table th,
.tech-table td {
    padding: 16px 20px;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.9rem;
}

.tech-table th {
    background-color: var(--dark-bg);
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 600;
}

.tech-table td strong {
    color: var(--text-dark);
}

.tech-table tr:last-child td {
    border-bottom: none;
}

.color-palette-preview {
    background-color: var(--dark-bg);
    color: var(--white);
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    border-top: 4px solid var(--primary);
}

.color-palette-preview h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.color-palette-preview p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 24px;
}

.colors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}

.color-item {
    height: 80px;
    border-radius: 6px;
    display: flex;
    align-items: flex-end;
    padding: 10px;
    cursor: pointer;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

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

.color-item span {
    font-size: 0.75rem;
    font-weight: 600;
    color: #1a202c;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 2px 6px;
    border-radius: 3px;
    display: block;
    width: 100%;
    text-align: center;
}

.small-note {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5) !important;
    margin-bottom: 0 !important;
}

/* ----------------------------------------------------
   11. PROCESS (SÜRECİMİZ) SECTION
---------------------------------------------------- */
.process {
    padding: 100px 0;
    background-color: var(--white);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    position: relative;
}

.step-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    position: relative;
    transition: var(--transition);
}

.step-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.step-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: rgba(2, 132, 199, 0.15);
    position: absolute;
    top: 20px;
    right: 30px;
    line-height: 1;
}

.step-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
    position: relative;
    z-index: 2;
}

.step-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    position: relative;
    z-index: 2;
}

/* ----------------------------------------------------
   12. CERTIFICATES & QUALITY STANDARDS
---------------------------------------------------- */
.certificates-section {
    padding: 100px 0;
    background-color: var(--light-bg);
}

.certificates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
}

.cert-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    text-align: center;
    transition: var(--transition);
}

.cert-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.cert-icon {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.cert-card h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.cert-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ----------------------------------------------------
   13. GALLERY (PORTFÖY) SECTION
---------------------------------------------------- */
.gallery {
    padding: 100px 0;
    background-color: var(--white);
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    color: var(--text-dark);
    padding: 10px 24px;
    border-radius: 30px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.gallery-item img,
.gallery-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.95), rgba(15, 23, 42, 0.4));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    opacity: 0;
    transition: var(--transition);
    z-index: 2;
}

.overlay-icons {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 44px;
    height: 44px;
    background-color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1rem;
    transform: scale(0.6);
    opacity: 0;
    transition: var(--transition);
}

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

.gallery-item:hover .overlay-icons {
    transform: scale(1);
    opacity: 1;
}

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

.gallery-overlay h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}

.gallery-overlay p {
    color: var(--primary-light);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.gallery-item.hide {
    display: none;
}

/* ----------------------------------------------------
   14. CASE STUDIES & TESTIMONIALS
---------------------------------------------------- */
.case-studies {
    padding: 100px 0;
    background-color: var(--light-bg);
}

.cases-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.case-card {
    background-color: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    border-top: 4px solid var(--primary);
    transition: var(--transition);
}

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

.case-tag {
    display: inline-block;
    padding: 4px 10px;
    background-color: rgba(2, 132, 199, 0.1);
    color: var(--primary-dark);
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 4px;
    margin-bottom: 16px;
}

.case-card h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 750;
    margin-bottom: 12px;
}

.case-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.case-specs {
    list-style: none;
    background-color: var(--light-bg);
    padding: 20px;
    border-radius: 6px;
    font-size: 0.85rem;
}

.case-specs li {
    margin-bottom: 8px;
}

.case-specs li:last-child {
    margin-bottom: 0;
}

/* Testimonials Grid */
.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.testimonial-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    position: relative;
}

.testimonial-card::before {
    content: '“';
    font-family: Georgia, serif;
    font-size: 5rem;
    color: rgba(2, 132, 199, 0.15);
    position: absolute;
    top: -10px;
    left: 20px;
    line-height: 1;
}

.testimonial-card .quote {
    font-size: 0.95rem;
    font-style: italic;
    color: var(--text-muted);
    position: relative;
    z-index: 2;
    margin-bottom: 20px;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-info strong {
    font-size: 0.95rem;
    color: var(--text-dark);
}

.author-info span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ----------------------------------------------------
   15. ARCHITECT PORTAL
---------------------------------------------------- */
.architect-portal {
    padding: 100px 0;
    background-color: var(--dark-bg);
    color: var(--white);
}

.architect-grid-box {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.arch-text h2 {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 850;
    color: var(--white);
    margin-bottom: 16px;
}

.arch-text p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 30px;
}

.download-links {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 16px;
    background-color: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--white);
    padding: 18px 24px;
    border-radius: 6px;
    text-decoration: none;
    transition: var(--transition);
}

.download-btn i {
    font-size: 1.8rem;
    color: var(--primary-light);
}

.download-btn span {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
}

.download-btn:hover {
    background-color: rgba(255,255,255,0.1);
    border-color: var(--primary);
    transform: translateX(5px);
}

.arch-form-wrapper {
    background-color: var(--dark-surface);
    padding: 40px;
    border-radius: 8px;
    border: 1px solid var(--border-dark);
}

.arch-form-wrapper h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.arch-form-wrapper p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 24px;
}

.arch-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.arch-form input,
.arch-form textarea {
    padding: 14px;
    border-radius: 4px;
    border: 1px solid var(--border-dark);
    background-color: rgba(0,0,0,0.2);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.9rem;
    outline: none;
    transition: var(--transition);
}

.arch-form input:focus,
.arch-form textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.2);
}

/* ----------------------------------------------------
   16. FAQ (S.S.S.) SECTION
---------------------------------------------------- */
.faq {
    padding: 100px 0;
    background-color: var(--white);
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    background-color: var(--white);
    transition: var(--transition);
}

.faq-question {
    padding: 24px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
    transition: var(--transition);
}

.faq-question:hover {
    background-color: var(--light-bg);
}

.faq-question h3 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark);
    padding-right: 20px;
}

.faq-question .icon {
    font-size: 1rem;
    color: var(--primary);
    transition: var(--transition);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
    color: var(--text-muted);
    font-size: 0.95rem;
}

.faq-answer p {
    padding-bottom: 24px;
}

.faq-item.active {
    border-color: var(--primary);
    box-shadow: var(--shadow-sm);
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-item.active .faq-question .icon {
    transform: rotate(45deg);
    color: var(--primary);
}

/* ----------------------------------------------------
   17. INTERACTIVE LABORATORY BUDGET PLANNER
---------------------------------------------------- */
.calculator-section {
    padding: 100px 0;
    background-color: var(--light-bg);
}

.calc-box-wrapper {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 50px;
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.calc-inputs {
    padding: 50px;
}

.calc-inputs h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 750;
    color: var(--text-dark);
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 8px;
    margin-bottom: 24px;
}

.calc-inputs h3:not(:first-child) {
    margin-top: 36px;
}

.calc-form-group {
    margin-bottom: 24px;
}

.calc-form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
}

.calc-slider {
    width: 100%;
    height: 6px;
    background: #cbd5e1;
    border-radius: 3px;
    outline: none;
    accent-color: var(--primary);
    -webkit-appearance: none;
}

.calc-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary);
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.calc-slider::-webkit-slider-thumb:hover {
    transform: scale(1.15);
}

.calc-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.calc-select-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.calc-select-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
}

.calc-select-group select {
    padding: 12px 16px;
    border-radius: 4px;
    border: 1px solid var(--border-color);
    background-color: var(--light-bg);
    outline: none;
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: var(--transition);
}

.calc-select-group select:focus {
    border-color: var(--primary);
}

.calc-results-panel {
    background-color: var(--dark-bg);
    color: var(--white);
    padding: 50px;
    display: flex;
    flex-direction: column;
}

.calc-results-panel h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--white);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 16px;
    margin-bottom: 30px;
}

.result-lines {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 36px;
}

.result-line {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.7);
}

.result-line.divider {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 24px;
}

.result-line strong {
    color: var(--white);
}

.result-line .total-price {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--primary-light);
}

.calc-disclaimer {
    background-color: rgba(255,255,255,0.03);
    padding: 16px;
    border-radius: 6px;
    margin-top: auto;
    margin-bottom: 24px;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.4);
    line-height: 1.5;
}

/* ----------------------------------------------------
   18. COVERAGE SECTION
---------------------------------------------------- */
.coverage {
    padding: 100px 0;
    background-color: var(--white);
}

.coverage-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
}

.cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
    margin-top: 30px;
}

.city-badge {
    background-color: var(--light-bg);
    border: 1px solid var(--border-color);
    padding: 12px 18px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.city-badge i {
    color: var(--primary);
}

.city-badge:hover {
    transform: translateX(3px);
    border-color: var(--primary);
    box-shadow: var(--shadow-sm);
}

.coverage-box {
    background-color: var(--dark-bg);
    color: var(--white);
    padding: 50px 40px;
    border-radius: 12px;
    border-top: 4px solid var(--primary);
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.coverage-icon {
    font-size: 3.5rem;
    color: var(--primary-light);
    margin-bottom: 20px;
}

.coverage-box h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.coverage-box p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
}

/* ----------------------------------------------------
   19. CONTACT (İLETİŞİM) SECTION
---------------------------------------------------- */
.contact {
    padding: 100px 0;
    background-color: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 60px;
    margin-bottom: 60px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.detail-card {
    background-color: var(--light-bg);
    padding: 30px;
    border-radius: 8px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    border-left: 3px solid transparent;
    transition: var(--transition);
}

.detail-card:hover {
    border-left-color: var(--primary);
    background-color: var(--white);
    box-shadow: var(--shadow-md);
}

.detail-card .icon {
    width: 48px;
    height: 48px;
    background-color: var(--primary);
    color: var(--white);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.detail-card h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.detail-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.detail-card p strong {
    color: var(--text-dark);
}

.detail-card p a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

.detail-card p a:hover {
    color: var(--primary-dark);
}

.contact-form-wrapper {
    background-color: var(--white);
    padding: 40px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
}

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

.form-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 18px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    background-color: var(--light-bg);
    outline: none;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    background-color: var(--white);
    box-shadow: 0 0 0 4px rgba(2, 132, 199, 0.15);
}

.btn-submit {
    width: 100%;
    border-radius: 4px;
    background-color: #25D366;
    color: var(--white);
    font-size: 1rem;
    padding: 16px;
    border: none;
}

.btn-submit:hover {
    background-color: #20ba56;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(37, 211, 102, 0.2);
}

.map-wrapper {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.map-wrapper iframe {
    display: block;
}

/* ----------------------------------------------------
   20. FOOTER
---------------------------------------------------- */
.footer {
    background-color: var(--dark-bg);
    color: var(--white);
    padding: 80px 0 30px;
    border-top: 1px solid var(--border-dark);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand .logo {
    color: var(--white);
    margin-bottom: 20px;
}

.footer-brand p {
    color: var(--text-light);
    font-size: 0.9rem;
    opacity: 0.7;
    max-width: 320px;
}

.footer-links h3,
.footer-products h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h3::after,
.footer-products h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--primary);
}

.footer-links ul,
.footer-products ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links ul li a,
.footer-products ul li a {
    color: var(--text-light);
    opacity: 0.7;
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links ul li a:hover,
.footer-products ul li a:hover {
    color: var(--primary-light);
    opacity: 1;
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--text-light);
    opacity: 0.6;
}

.developer-note {
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* ----------------------------------------------------
   21. LIGHTBOX MODAL
---------------------------------------------------- */
.lightbox {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 23, 42, 0.98);
    justify-content: center;
    align-items: center;
}

.lightbox-wrapper {
    position: relative;
    max-width: 90%;
    max-height: 85%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-media-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.lightbox-content,
.lightbox-video-content {
    max-width: 100%;
    max-height: 75vh;
    border-radius: 6px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    display: none;
    object-fit: contain;
}

.lightbox-video-content {
    width: auto;
    height: 75vh;
}

.lightbox-caption {
    margin-top: 16px;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    text-align: center;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 2.5rem;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10001;
    line-height: 1;
}

.lightbox-close:hover {
    color: var(--primary-light);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.6);
    font-size: 2.5rem;
    cursor: pointer;
    padding: 20px;
    user-select: none;
    transition: var(--transition);
    text-decoration: none;
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    color: var(--primary-light);
}

/* ----------------------------------------------------
   22. FLOATING CALL & WHATSAPP BUTTONS
---------------------------------------------------- */
.float-btn {
    position: fixed;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    transition: var(--transition);
    text-decoration: none;
}

.float-btn:hover {
    transform: scale(1.1) rotate(5deg);
}

.whatsapp-float {
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
}

.call-float {
    bottom: 105px;
    right: 30px;
    background-color: var(--primary-dark);
}

.float-btn .tooltip {
    position: absolute;
    right: 75px;
    background-color: var(--dark-bg);
    color: var(--white);
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    opacity: 0;
    visibility: hidden;
    white-space: nowrap;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.float-btn:hover .tooltip {
    opacity: 1;
    visibility: visible;
}

/* ----------------------------------------------------
   23. RESPONSIVE DESIGN (MOBİL UYUMLULUK)
---------------------------------------------------- */
@media (max-width: 1100px) {
    .nav-menu {
        gap: 2px;
    }
    .nav-link {
        font-size: 0.73rem;
        padding: 5px 7px;
    }
    .logo {
        font-size: 1.3rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-image img {
        height: 400px;
    }
    
    .sector-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .sector-image img {
        height: 300px;
    }
    
    .simulator-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .calc-box-wrapper {
        grid-template-columns: 1fr;
    }
    
    .architect-grid-box {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .specs-grid {
        grid-template-columns: 1fr;
    }
    
    .coverage-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 960px) {
    .hamburger {
        display: flex;
    }

    .nav-actions .phone-btn {
        display: none;
    }

    .nav-menu {
        position: absolute;
        left: -100%;
        top: 100%;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        height: calc(100vh - 60px);
        height: calc(100dvh - 60px);
        text-align: center;
        padding: 20px 0 60px;
        box-shadow: var(--shadow-md);
        transition: var(--transition);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        gap: 0;
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin-bottom: 0;
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }

    .nav-link {
        font-size: 1rem;
        padding: 16px 24px;
        display: block;
        width: 100%;
        text-align: left;
        border-radius: 0;
        background: none;
    }

    .nav-link:hover {
        background: rgba(2, 132, 199, 0.05);
    }

    .nav-more-btn {
        font-size: 1rem;
        padding: 16px 24px;
        width: 100%;
        text-align: left;
        justify-content: flex-start;
    }

    /* Mobile dropdown inline */
    .nav-dropdown-menu {
        position: static;
        opacity: 1;
        visibility: hidden;
        transform: none;
        box-shadow: none;
        border: none;
        border-radius: 0;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, visibility 0.3s ease;
        background: #f8fafc;
    }

    .nav-dropdown.open .nav-dropdown-menu {
        visibility: visible;
        max-height: 400px;
    }

    .nav-dropdown-menu::before {
        display: none;
    }

    .nav-dropdown-link {
        padding: 14px 40px;
        font-size: 0.95rem;
        border-bottom: 1px solid rgba(0,0,0,0.04);
        justify-content: flex-start;
    }

    .nav-actions {
        display: none;
    }
    
    .hero {
        height: calc(100vh - 90px);
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .calc-inputs {
        padding: 30px;
    }
    
    .calc-results-panel {
        padding: 30px;
    }
    
    .calc-row {
        grid-template-columns: 1fr;
    }
    
    .cases-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
}

@media (max-width: 576px) {
    .top-bar {
        display: none;
    }
    
    .navbar {
        top: 0;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .experience-badge {
        padding: 16px 20px;
    }
    
    .experience-badge .number {
        font-size: 1.8rem;
    }
    
    .experience-badge .text {
        font-size: 0.75rem;
    }
}

/* ----------------------------------------------------
   24. ANIMATIONS
---------------------------------------------------- */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ----------------------------------------------------
   25. BLOG / TEKNİK MAKALELER BÖLÜMÜ
---------------------------------------------------- */
.blog-section {
    padding: 100px 0;
    background: var(--light-bg);
}

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

.blog-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border-color);
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 48px rgba(2, 132, 199, 0.12);
    border-color: var(--primary-light);
}

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

.blog-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.blog-category {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--primary);
    color: var(--white);
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    font-family: var(--font-heading);
    letter-spacing: 0.03em;
    z-index: 2;
}

.blog-content {
    padding: 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.blog-meta {
    display: flex;
    gap: 16px;
    font-size: 0.82rem;
    color: var(--text-muted);
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-meta i {
    color: var(--primary);
    font-size: 0.75rem;
}

.blog-content h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-content p {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.7;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.blog-tags .tag {
    background: #f0f9ff;
    color: var(--primary);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid #bae6fd;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 600;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    text-decoration: none;
    margin-top: 8px;
    transition: var(--transition);
}

.blog-read-more:hover {
    color: var(--primary-dark);
    gap: 12px;
}

.blog-read-more i {
    font-size: 0.8rem;
    transition: var(--transition);
}

/* ----------------------------------------------------
   26. AI IMAGE BADGE
---------------------------------------------------- */
.gallery-item.ai-image-badge {
    position: relative;
}

.gallery-item.ai-image-badge::before {
    content: '✨ AI Render';
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, #7c3aed, #4f46e5);
    color: white;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 700;
    z-index: 5;
    letter-spacing: 0.02em;
    font-family: var(--font-heading);
}

/* Gallery Item Count in Filter Badge */
.filter-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    background: rgba(255,255,255,0.2);
    border-radius: 10px;
    font-size: 0.7rem;
    padding: 0 5px;
    margin-left: 4px;
}

.filter-btn.active .filter-count {
    background: rgba(255,255,255,0.3);
}

/* Galeri sayfa sonu padding */
.gallery-grid {
    padding-bottom: 20px;
}

/* Blog section responsive */
@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .blog-section {
        padding: 70px 0;
    }
    
    .blog-content {
        padding: 20px;
    }
    
    .blog-content h3 {
        font-size: 1rem;
    }
}


@media (max-width: 480px) {
    .blog-meta {
        flex-wrap: wrap;
        gap: 8px;
    }
}

/* ----------------------------------------------------
   LOGO IMAGE (RESİM LOGO) STİLLERİ
---------------------------------------------------- */
.nav-logo-img {
    height: 48px;
    width: auto;
    max-width: 200px;
    display: block;
    object-fit: contain;
    transition: var(--transition);
}

.nav-logo-img:hover {
    opacity: 0.9;
    transform: scale(1.02);
}

.logo-img-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.footer-logo-img {
    height: 44px;
    width: auto;
    max-width: 180px;
    display: block;
    object-fit: contain;
    margin-bottom: 16px;
    filter: brightness(0) invert(1);
    opacity: 0.9;
    transition: var(--transition);
}

.footer-logo-img:hover {
    opacity: 1;
}

/* ----------------------------------------------------
   BLOG / TEKNİK MAKALE BÖLÜMÜ - TAM STİLLER
---------------------------------------------------- */
.blog-section {
    padding: 100px 0;
    background-color: var(--white);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 36px;
    margin-bottom: 60px;
}

.blog-card-featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 0;
    min-height: 420px;
}

.blog-card-featured .blog-img-wrap {
    border-radius: 10px 0 0 10px;
}

.blog-card-featured .blog-content {
    border-radius: 0 10px 10px 0;
    border-left: none;
    border-top: 1px solid var(--border-color);
}

.blog-card {
    background-color: var(--white);
    border-radius: 10px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.blog-img-wrap {
    position: relative;
    height: 220px;
    overflow: hidden;
    flex-shrink: 0;
}

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

.blog-card:hover .blog-img-wrap img {
    transform: scale(1.06);
}

.blog-category-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background-color: var(--primary);
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.72rem;
    letter-spacing: 0.5px;
    padding: 5px 12px;
    border-radius: 30px;
    z-index: 2;
    text-transform: uppercase;
}

.blog-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex: 1;
    border: 1px solid var(--border-color);
    border-top: none;
    border-radius: 0 0 10px 10px;
    background-color: var(--white);
}

.blog-meta {
    display: flex;
    gap: 18px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.blog-meta span {
    font-size: 0.78rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
}

.blog-meta span i {
    color: var(--primary);
    font-size: 0.8rem;
}

.blog-content h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 750;
    color: var(--text-dark);
    line-height: 1.4;
    margin-bottom: 14px;
    transition: var(--transition);
}

.blog-card:hover .blog-content h3 {
    color: var(--primary-dark);
}

.blog-content p {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 18px;
}

.blog-highlight-box {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    background-color: rgba(2, 132, 199, 0.06);
    border-left: 4px solid var(--primary);
    padding: 16px 20px;
    border-radius: 0 6px 6px 0;
    margin: 16px 0;
    font-size: 0.88rem;
    color: var(--text-dark);
    line-height: 1.6;
}

.blog-highlight-box i {
    color: var(--primary);
    font-size: 1.1rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.blog-highlight-box strong {
    display: block;
    margin-bottom: 4px;
    color: var(--primary-dark);
    font-size: 0.85rem;
}

.blog-checklist {
    list-style: none;
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.blog-checklist li {
    font-size: 0.88rem;
    color: var(--text-dark);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.5;
}

.blog-checklist li i {
    color: #22c55e;
    font-size: 0.95rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.blog-checklist li strong {
    color: var(--text-dark);
}

.blog-cta-strip {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-surface) 100%);
    border-radius: 10px;
    padding: 40px 50px;
    gap: 30px;
    border-left: 5px solid var(--primary);
}

.blog-cta-text h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 8px;
}

.blog-cta-text p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.65);
}

@media (max-width: 992px) {
    .blog-card-featured {
        grid-column: 1;
        grid-template-columns: 1fr;
    }

    .blog-card-featured .blog-img-wrap {
        border-radius: 10px 10px 0 0;
        height: 280px;
    }

    .blog-card-featured .blog-content {
        border-radius: 0 0 10px 10px;
        border-top: none;
        border-left: 1px solid var(--border-color);
    }
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .blog-content {
        padding: 22px;
    }

    .blog-content h3 {
        font-size: 1rem;
    }

    .blog-cta-strip {
        flex-direction: column;
        padding: 30px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .nav-logo-img {
        height: 38px;
    }
}
