/* Genel Stil Ayarları */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1e88e5;
    --primary-dark: #1565c0;
    --primary-light: #42a5f5;
    --secondary-color: #e3f2fd;
    --accent-color: #0d47a1;
    --text-dark: #1e293b;
    --text-light: #64748b;
    --white: #ffffff;
    --light-gray: #f8fafc;
    --border-color: #e2e8f0;
    --success-color: #059669;
    --header-dark: #f8f9fa;
    --header-darker: #e9ecef;
    --shadow: 0 3px 12px rgba(0,0,0,0.08);
    --shadow-hover: 0 6px 24px rgba(0,0,0,0.12);
    --shadow-subtle: 0 1px 4px rgba(0,0,0,0.06);
}

html {
    font-size: 14px; /* Base font size küçültüldü (default 16px) */
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden; /* Yatay scroll'u önle */
    font-size: 1rem;
}

/* Service Notice - Removed */
.service-notice {
    background: var(--white);
    border-bottom: 1px solid var(--border-color);
    padding: 12px 0;
    font-size: 14px;
    color: var(--text-dark);
    text-align: center;
}

.service-notice p {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.service-notice .notice-icon {
    font-size: 18px;
    display: inline-block;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header */
.header {
    background: var(--header-dark);
    color: var(--text-dark);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

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

.logo-link {
    display: block;
    text-decoration: none;
}

.logo-image {
    max-width: 180px;
    max-height: 65px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.logo-text {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--text-dark);
    font-weight: 800;
    font-size: 20px;
    letter-spacing: -0.5px;
}

.logo-search-icon {
    width: 20px;
    height: 20px;
    margin-right: 8px;
    vertical-align: middle;
    display: inline-block;
}

.logo-main {
    color: var(--text-dark);
}

.logo-sub {
    color: var(--white);
    background: var(--primary-color);
    padding: 2px 8px 2px 6px;
    border-radius: 4px;
    font-size: 16px;
    margin-left: 3px;
    position: relative;
    overflow: visible;
    display: inline-flex;
    align-items: center;
}

.header-contact .phone-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    padding: 10px 20px;
    background: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 6px;
    transition: all 0.3s ease;
}

.header-contact .phone-link:hover {
    background: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 136, 229, 0.4);
}

.phone-icon {
    font-size: 18px;
    color: var(--white);
}

.phone-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}

.phone-number {
    color: var(--white);
    font-weight: 600;
    font-size: 20px;
    line-height: 1.2;
}

.phone-label {
    color: var(--white);
    font-size: 12px;
    font-weight: 400;
    opacity: 0.9;
    line-height: 1;
}

/* Navigation */
.main-nav {
    background: var(--header-darker);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1001;
    border-top: 1px solid var(--border-color);
}

.nav-container {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    padding: 15px;
    cursor: pointer;
    margin-left: auto;
    z-index: 1002;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.main-nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.main-nav a {
    display: block;
    padding: 12px 18px;
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.5px;
}

.main-nav a:hover,
.main-nav a.active {
    background: rgba(30, 136, 229, 0.1);
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

/* Hero Slider */
.hero-slider {
    background: var(--light-gray);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 120px 0 100px;
    color: var(--text-dark);
    min-height: 700px;
    display: flex;
    align-items: center;
    border-bottom: none;
    position: relative;
}

.slider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1;
}

.slider-container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.slide-content {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 0 auto;
    min-height: 500px;
}

.hero-text {
    position: relative;
    z-index: 3;
}

.hero-centered {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

.hero-main-title {
    font-size: 52px;
    margin-bottom: 20px;
    line-height: 1.2;
    color: var(--white);
    font-weight: 900;
    text-shadow: 3px 3px 8px rgba(0,0,0,0.8);
    letter-spacing: -0.5px;
    text-transform: uppercase;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--white);
    margin-bottom: 50px;
    font-weight: 400;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    opacity: 0.95;
}

.hero-quick-links {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
}

/* Arama Formu */
.search-form-wrapper {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    margin-top: 40px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.search-form {
    width: 100%;
}

.search-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr auto;
    gap: 15px;
    align-items: end;
}

.search-field {
    display: flex;
    flex-direction: column;
    margin-bottom: 0;
}

.search-field label {
    display: none;
}

.custom-select-trigger {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 8px 15px 12px 15px;
    min-height: 60px;
    justify-content: center;
}

.custom-select-trigger .input-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
    line-height: 1;
}

.custom-select-trigger .placeholder,
.custom-select-trigger .selected {
    font-size: 15px;
    color: var(--text-dark);
    font-weight: 500;
    margin-top: 2px;
}

.custom-select-trigger .arrow {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
}

.custom-select-trigger .selected {
    color: var(--text-dark);
    font-weight: 500;
}

.search-btn {
    padding: 12px 40px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    height: fit-content;
}

.search-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 136, 229, 0.4);
}

/* Favori Aramalar */
.favorite-searches {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    align-items: center;
    flex-direction: row;
}

.favorite-label {
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
    margin-right: 5px;
}

.favorite-btn {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
}

.favorite-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    border-color: var(--primary-color);
}

/* Kategoriler Liste */
.categories-list-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.categories-column {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.category-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.3s ease;
    font-size: 13px;
    font-weight: 500;
}

.category-item:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 136, 229, 0.3);
}

.category-name {
    font-weight: 600;
    color: inherit;
}

.category-count {
    font-size: 12px;
    color: var(--text-light);
    font-weight: 400;
}

.category-item:hover .category-count {
    color: rgba(255, 255, 255, 0.9);
}

/* Şehirler Bölümü */
.cities-section {
    background: var(--white);
}

.cities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 30px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.city-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 15px 10px;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.3s ease;
    text-align: center;
    min-height: 80px;
}

.city-item:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 136, 229, 0.3);
}

.city-name {
    font-weight: 600;
    color: inherit;
    font-size: 14px;
    margin-bottom: 5px;
}

.city-count {
    font-size: 11px;
    color: var(--text-light);
    font-weight: 400;
}

.city-item:hover .city-count {
    color: rgba(255, 255, 255, 0.9);
}

/* Firma Kartları */
.companies-section {
    background: var(--light-gray);
}

.companies-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 40px;
}

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

.company-card {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
}

.company-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
    border-color: var(--primary-color);
}

.company-card-inner {
    padding: 0;
}

.company-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e0e0e0;
}

.company-header h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
    flex: 1;
    line-height: 1.4;
}

.company-rating {
    display: flex;
    align-items: center;
    gap: 5px;
}

.star {
    color: #ddd;
    font-size: 16px;
}

.star.filled {
    color: #ffc107;
}

.rating-value {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-light);
    margin-left: 5px;
}

.company-info {
    margin-bottom: 20px;
}

.company-category-badge {
    display: inline-block;
    background: #f5f5f5;
    color: var(--text-dark);
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 15px;
}

.company-info p {
    margin: 10px 0;
    font-size: 14px;
    color: var(--text-dark);
    line-height: 1.6;
}

.company-info strong {
    color: var(--text-dark);
    font-weight: 600;
    margin-right: 5px;
}

.brand-tags {
    display: inline;
}

.brand-tag {
    background: #f5f5f5;
    color: var(--text-dark);
    padding: 3px 8px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: 500;
    margin-right: 5px;
}

.company-location {
    margin-top: 12px;
    color: var(--text-dark);
    font-size: 14px;
}

.company-address {
    color: var(--text-light);
    font-size: 13px;
    margin-top: 10px;
    line-height: 1.5;
}

.company-actions {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.company-phone-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.company-phone-btn:hover {
    background: var(--primary-dark);
}

.company-phone-btn .phone-icon {
    font-size: 16px;
}

.company-detail-btn {
    padding: 12px 20px;
    background: var(--white);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    border: 1px solid var(--primary-color);
    transition: all 0.3s ease;
}

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

.no-results {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-light);
    font-size: 18px;
}

.quick-link-btn {
    display: inline-block;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
}

.quick-link-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    border-color: var(--primary-color);
    color: var(--white);
}

.hero-text h2 {
    font-size: 38px;
    margin-bottom: 15px;
    line-height: 1.3;
    color: var(--white);
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-text p {
    font-size: 16px;
    color: var(--white);
    margin-bottom: 25px;
    font-weight: 500;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

/* Service Request Form */
.service-request-form {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-hover);
    color: var(--text-dark);
}

.service-request-form h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

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

.form-group select:focus,
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(26, 84, 144, 0.1);
}

.form-group select:disabled {
    background-color: var(--light-gray);
    cursor: not-allowed;
}

/* Custom Select Styles */
.custom-select-wrapper {
    position: relative;
    width: 100%;
}

.custom-select {
    position: relative;
}

.custom-select.disabled .custom-select-trigger {
    background-color: var(--light-gray);
    cursor: not-allowed;
    color: var(--text-light);
}

.custom-select-trigger {
    width: 100%;
    padding: 8px 15px 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    background: var(--white);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    font-size: 16px;
    transition: all 0.3s ease;
    min-height: 60px;
    position: relative;
}

.custom-select-trigger:hover:not(.disabled) {
    border-color: var(--primary-color);
}

.custom-select.active .custom-select-trigger {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.custom-select-trigger .input-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
    line-height: 1;
}

.custom-select-trigger .placeholder {
    color: var(--text-light);
    font-size: 15px;
    font-weight: 500;
    margin-top: 2px;
}

.custom-select-trigger .selected {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 15px;
    margin-top: 2px;
}

.custom-select-trigger .arrow {
    color: var(--text-light);
    font-size: 12px;
    transition: transform 0.3s ease;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
}

.custom-select.active .custom-select-trigger .arrow {
    transform: translateY(-50%) rotate(180deg);
}

.custom-select-wrapper:nth-child(1) {
    z-index: 100;
}

.custom-select-wrapper:nth-child(2) {
    z-index: 99;
}

.custom-select-wrapper:nth-child(3) {
    z-index: 98;
}

.custom-select-wrapper.active {
    z-index: 1000 !important;
}

.custom-select-dropdown {
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    right: 0;
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    box-shadow: var(--shadow-hover);
    z-index: 1001;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.custom-select.active .custom-select-dropdown {
    max-height: 400px;
    opacity: 1;
    visibility: visible;
    overflow-y: auto;
    z-index: 1001;
}

.custom-select-search {
    padding: 12px;
    border-bottom: 1px solid var(--border-color);
    background: var(--light-gray);
    border-radius: 8px 8px 0 0;
}

.custom-select-search .search-input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 14px;
    background: var(--white);
}

.custom-select-search .search-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.1);
}

.custom-select-options {
    max-height: 300px;
    overflow-y: auto;
    padding: 8px 0;
}

.custom-select-option {
    padding: 12px 20px;
    cursor: pointer;
    transition: all 0.2s ease;
    color: var(--text-dark);
    font-size: 15px;
    display: flex;
    align-items: center;
}

.custom-select-option:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
}

.custom-select-option.selected {
    background: var(--primary-color);
    color: var(--white);
    font-weight: 600;
}

.custom-select-option.hidden {
    display: none;
}

/* Scrollbar styling */
.custom-select-options::-webkit-scrollbar {
    width: 6px;
}

.custom-select-options::-webkit-scrollbar-track {
    background: var(--light-gray);
}

.custom-select-options::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 3px;
}

.custom-select-options::-webkit-scrollbar-thumb:hover {
    background: var(--text-light);
}

.form-actions {
    display: flex;
    gap: 10px;
    margin-top: 25px;
    justify-content: center;
}

.btn-primary,
.btn-secondary {
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* Search Result */
.search-result-content {
    text-align: center;
    padding: 20px 0;
}

.result-text {
    font-size: 20px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 25px;
}

.result-phone {
    margin: 30px 0;
    padding: 20px;
    background: var(--secondary-color);
    border-radius: 8px;
}

.phone-label {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 10px;
}

.result-phone-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 24px;
    font-weight: 700;
    padding: 15px 30px;
    background: var(--white);
    border-radius: 8px;
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
}

.result-phone-link:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.result-phone-link .phone-icon {
    font-size: 24px;
}

.result-note {
    margin-top: 25px;
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
}

.btn-secondary {
    background: var(--light-gray);
    color: var(--text-dark);
}

.btn-secondary:hover {
    background: var(--border-color);
}

/* Services Section */
.services-section {
    padding: 60px 0 50px;
    background: var(--white);
    position: relative;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-color), transparent);
}

.section-title {
    text-align: center;
    font-size: 30px;
    color: var(--primary-color);
    margin-bottom: 35px;
    position: relative;
    padding-bottom: 18px;
    font-weight: 700;
    letter-spacing: -0.3px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 72px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    border-radius: 3px;
}

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

.service-card {
    background: var(--white);
    padding: 0;
    border-radius: 14px;
    box-shadow: var(--shadow);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    overflow: hidden;
    border: 1px solid rgba(226, 232, 240, 0.6);
    position: relative;
}

.service-card:nth-child(1) {
    transform: translateY(0);
}

.service-card:nth-child(2) {
    transform: translateY(3px);
}

.service-card:nth-child(3) {
    transform: translateY(-2px);
}

.service-card:hover {
    transform: translateY(-8px) rotate(0.5deg);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-light);
}

.service-card:nth-child(2):hover {
    transform: translateY(-8px) rotate(-0.5deg);
}

.service-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
    background: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

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

.service-icon {
    font-size: 28px;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--secondary-color);
    border-radius: 8px;
    color: var(--primary-color);
    font-weight: normal;
    border: 2px solid var(--border-color);
}

.service-card h3,
.service-card p {
    padding: 0 30px;
}

.service-card h3 {
    padding-top: 20px;
    margin-bottom: 12px;
}

.service-card h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.2px;
}

.service-card:nth-child(2) h3 {
    font-size: 17px;
}

.service-card:nth-child(3) h3 {
    font-size: 19px;
}

.service-card p {
    color: var(--text-light);
    line-height: 1.75;
    padding-bottom: 20px;
    font-size: 13px;
}


/* Brands Section */
.brands-section {
    padding: 82px 0 78px;
    background: var(--white);
    position: relative;
}

.brands-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-color), transparent);
}

.brands-layout {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.brands-image-wrapper {
    text-align: center;
}

.brands-header-image {
    max-width: 100%;
    width: auto;
    height: auto;
    display: block;
    margin: 0 auto;
}

.brands-content-wrapper {
    width: 100%;
}

.section-header-with-image {
    text-align: center;
    margin-bottom: 30px;
}

.section-header-image {
    max-width: 100%;
    width: auto;
    height: auto;
    margin-bottom: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* Masaüstü görünümü - İki kolonlu düzen */
@media (min-width: 1025px) {
    .brands-layout {
        flex-direction: row;
        align-items: flex-start;
        gap: 50px;
    }

    .brands-image-wrapper {
        flex: 0 0 40%;
        text-align: left;
    }

    .brands-header-image {
        margin: 0;
        width: 100%;
    }

    .brands-content-wrapper {
        flex: 0 0 60%;
    }

    .section-header-with-image {
        text-align: left;
    }

    .section-subtitle {
        text-align: left;
    }
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 18px;
    margin-bottom: 40px;
}

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

.brand-item {
    background: var(--white);
    padding: 20px 25px;
    text-align: center;
    border-radius: 8px;
    font-weight: 600;
    color: var(--text-dark);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid var(--border-color);
    position: relative;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    font-size: 15px;
}

.brand-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.brand-item:hover::before {
    opacity: 1;
}

.brand-item:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
    border-color: var(--primary-color);
    box-shadow: 0 6px 16px rgba(30, 136, 229, 0.3);
}

/* Articles Section */
.articles-section {
    padding: 60px 0;
    background: var(--light-gray);
}

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

.article-card {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

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

.article-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 22px;
}

.article-card p {
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.8;
}

.read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.read-more:hover {
    color: var(--accent-color);
}

/* About Section */
.about-section {
    padding: 60px 0;
    background: var(--white);
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-light);
    text-align: justify;
}

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

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

.faq-item {
    background: var(--white);
    margin-bottom: 16px;
    border-radius: 10px;
    box-shadow: var(--shadow-subtle);
    overflow: hidden;
    border: 1px solid rgba(226, 232, 240, 0.5);
}

.faq-item:nth-child(odd) {
    border-left: 3px solid var(--secondary-color);
}

.faq-item:nth-child(even) {
    border-right: 3px solid var(--secondary-color);
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

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

.faq-question h3 {
    color: var(--primary-color);
    font-size: 18px;
    margin: 0;
}

.faq-toggle {
    font-size: 24px;
    color: var(--primary-color);
    font-weight: bold;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), padding 0.5s ease;
    padding: 0 20px;
}

.faq-item.active .faq-answer {
    max-height: 800px;
    padding: 0 20px 20px;
}

/* Animasyon performansını artır */
.faq-item {
    transform: translateZ(0);
    backface-visibility: hidden;
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.8;
}

.faq-answer a {
    color: var(--primary-color);
    text-decoration: none;
}

.faq-answer a:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 30px 0 15px;
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 60px;
}

.footer-content {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.footer-column h3,
.footer-column h4 {
    margin-bottom: 12px;
    color: var(--white);
    font-size: 16px;
}

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

.footer-column ul li {
    margin-bottom: 6px;
    font-size: 13px;
}

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

.footer-column a:hover {
    color: var(--white);
    padding-left: 5px;
    opacity: 1;
}

.footer-phone {
    font-size: 20px;
    font-weight: 600;
    margin-top: 10px;
}

.footer-phone a {
    color: var(--white);
}

.footer-column p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 8px;
}

.footer-bottom {
    text-align: center;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.9);
    font-size: 12px;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    z-index: 999;
    opacity: 0;
    transform: scale(0.8);
}

.scroll-to-top.visible {
    display: flex;
    opacity: 1;
    transform: scale(1);
}

.scroll-to-top:hover {
    background: var(--primary-dark);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.scroll-to-top:active {
    transform: scale(0.95);
}

.scroll-to-top-icon {
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
}

/* Sadece masaüstünde göster */
@media (max-width: 1024px) {
    .scroll-to-top {
        display: none !important;
    }
}

/* Content Pages */
.content-page {
    padding: 60px 0;
    background: var(--white);
}

.content-page h1 {
    color: var(--primary-color);
    font-size: 28px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--accent-color);
}

.content-body {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

.content-body h2 {
    color: var(--primary-color);
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
}

.content-body h3 {
    color: var(--text-dark);
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
}

.content-body p {
    margin-bottom: 15px;
    color: var(--text-light);
    text-align: justify;
}

.content-body ul,
.content-body ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

.content-body li {
    margin-bottom: 10px;
    color: var(--text-light);
}

.content-body a {
    color: var(--primary-color);
    text-decoration: none;
}

.content-body a:hover {
    text-decoration: underline;
}

/* Article Pages */
.article-full {
    max-width: 900px;
    margin: 0 auto;
}

.article-meta {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.article-content {
    line-height: 1.8;
}

.article-content h2 {
    color: var(--primary-color);
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
}

.article-content h3 {
    color: var(--text-dark);
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
}

.article-navigation {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

/* Contact Page */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

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

.contact-card {
    background: var(--secondary-color);
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 20px;
}

.contact-card h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.contact-item {
    margin-bottom: 20px;
}

.contact-item strong {
    display: block;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.contact-link {
    color: var(--primary-color);
    font-size: 20px;
    font-weight: 600;
    text-decoration: none;
}

.contact-link:hover {
    text-decoration: underline;
}

.contact-map-wrapper {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.contact-map-wrapper h2 {
    color: var(--primary-color);
    margin-bottom: 25px;
}

.contact-map {
    width: 100%;
    height: 450px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-subtle);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* Mobil Sabit Hemen Ara Butonu */
.mobile-call-button {
    display: none;
}

/* Responsive Design - Tablet */
@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }

    .slide-content {
        gap: 30px;
    }

    .hero-main-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .hero-quick-links {
        gap: 10px;
    }
    
    .quick-link-btn {
        padding: 10px 18px;
        font-size: 14px;
    }
    
    .hero-text h2 {
        font-size: 32px;
    }
    
    .hero-text p {
        font-size: 18px;
    }
    
    .hero-slider {
        min-height: 500px;
        padding: 60px 0 40px;
        background-size: cover;
        background-position: center;
    }
    
    .slider-overlay {
        background: rgba(0, 0, 0, 0.3);
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        max-width: none;
    }

    .brands-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .articles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Responsive Design - Mobil */
@media (max-width: 768px) {
    .service-notice {
        font-size: 12px;
        padding: 10px 0;
    }
    
    .service-notice .notice-icon {
        font-size: 16px;
    }
    
    .service-notice p {
        padding: 0 10px;
    }
    
    .header-top {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        padding: 15px 0;
        position: relative;
    }

    .logo-image {
        max-width: 160px;
        max-height: 60px;
    }
    
    .logo-text {
        font-size: 20px;
    }
    
    .logo-sub {
        font-size: 16px;
        padding: 2px 6px;
    }

    .header-contact .phone-link {
        font-size: 18px;
        padding: 10px 20px;
    }

    .main-nav {
        padding: 0;
        position: sticky;
        top: 0;
        z-index: 1001;
    }

    .nav-container {
        position: relative;
    }

    .mobile-menu-toggle {
        display: flex;
        position: absolute;
        right: 0;
        top: -60px;
        z-index: 1002;
        padding: 12px 15px;
        margin: 0;
    }

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

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

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

    .main-nav ul {
        flex-direction: column;
        gap: 0;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .main-nav.active ul {
        max-height: 500px;
    }

    .main-nav a {
        padding: 12px 15px;
        text-align: center;
        border-bottom: 1px solid var(--border-color);
    }

    .hero-slider {
        padding: 50px 0 30px;
        min-height: 450px;
    }
    
    .hero-centered {
        padding: 20px 15px;
    }
    
    .hero-main-title {
        font-size: 28px;
        margin-bottom: 15px;
    }
    
    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    .hero-quick-links {
        gap: 8px;
        margin-top: 20px;
    }
    
    .quick-link-btn {
        padding: 8px 14px;
        font-size: 13px;
    }

    .slide-content {
        flex-direction: column;
        gap: 30px;
    }

    .hero-text {
        text-align: center;
    }

    .hero-text h2 {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .hero-text p {
        font-size: 18px;
        margin-bottom: 20px;
    }
    
    .hero-text h2 {
        font-size: 28px;
    }

    .service-request-form {
        padding: 20px;
        margin-top: 0;
    }
    
    .custom-select-dropdown {
        max-height: 350px;
    }
    
    .custom-select-options {
        max-height: 250px;
    }
    
    .custom-select-trigger {
        padding: 8px 12px 10px 12px;
        min-height: 60px;
    }
    
    .custom-select-trigger .input-label {
        font-size: 10px;
    }
    
    .custom-select-trigger .placeholder,
    .custom-select-trigger .selected {
        font-size: 14px;
    }
    
    .custom-select-search {
        padding: 10px;
    }
    
    .custom-select-search .search-input {
        padding: 8px 10px;
        font-size: 13px;
    }
    
    .custom-select-option {
        padding: 10px 15px;
        font-size: 14px;
    }

    .service-request-form h3 {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .form-group label {
        font-size: 14px;
    }

    .form-group select,
    .form-group input,
    .form-group textarea {
        padding: 10px 12px;
        font-size: 14px;
    }

    .btn-primary,
    .btn-secondary {
        padding: 10px 20px;
        font-size: 14px;
    }

    .services-section {
        padding: 50px 0;
    }

    .services-grid,
    .brands-grid,
    .articles-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

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

    .section-subtitle {
        font-size: 16px;
    }

    .service-image {
        height: 200px;
    }

    .service-card h3 {
        font-size: 18px;
        margin-bottom: 10px;
        padding-top: 20px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .service-card p {
        font-size: 14px;
        padding-left: 20px;
        padding-right: 20px;
        padding-bottom: 20px;
    }

    .brand-item {
        padding: 15px;
        font-size: 14px;
    }

    .articles-section,
    .about-section,
    .faq-section,
    .brands-section {
        padding: 50px 0;
    }

    .article-card {
        padding: 20px;
    }

    .article-card h3 {
        font-size: 18px;
    }

    .article-card p {
        font-size: 14px;
    }

    .about-content p {
        font-size: 16px;
    }

    .faq-question {
        padding: 15px;
    }

    .faq-question h3 {
        font-size: 16px;
    }

    .faq-toggle {
        font-size: 20px;
    }

    .faq-answer {
        padding: 0 15px;
    }

    .faq-item.active .faq-answer {
        padding: 0 15px 15px;
    }

    .footer {
        padding: 25px 0 10px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }

    .footer-column h3,
    .footer-column h4 {
        margin-bottom: 10px;
        font-size: 15px;
    }
    
    .footer-column ul li {
        margin-bottom: 5px;
        font-size: 12px;
    }
    
    .footer-column p {
        font-size: 12px;
    }
    
    .footer-bottom {
        padding-top: 10px;
        font-size: 11px;
    }

    .content-page {
        padding: 40px 0;
    }

    .content-page h1 {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .content-body h2 {
        font-size: 20px;
        margin-top: 30px;
    }

    .content-body h3 {
        font-size: 18px;
        margin-top: 20px;
    }

    .content-body p {
        font-size: 15px;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-map-wrapper {
        padding: 20px;
    }

    .contact-map-wrapper h2 {
        font-size: 20px;
    }

    .contact-map {
        height: 350px;
    }

    /* Mobil Sabit Hemen Ara Butonu */
    .mobile-call-button {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 9999;
        background: var(--primary-color);
        box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
        padding: 0;
    }

    .mobile-call-link {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        padding: 16px 20px;
        color: var(--white);
        text-decoration: none;
        font-size: 22px;
        font-weight: 700;
        background: var(--primary-color);
        transition: all 0.3s ease;
    }

    .mobile-call-link:active {
        background: var(--primary-dark);
        transform: scale(0.98);
    }

    .mobile-call-icon {
        font-size: 24px;
        font-weight: normal;
    }

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

    .mobile-call-text {
        letter-spacing: 0.5px;
    }

    /* Mobil için body padding bottom ekle (buton için yer bırak) */
    html {
        scroll-padding-bottom: 70px;
    }
    
    /* Footer'ın mobil butonun altında kalmasını önle */
    .footer {
        margin-bottom: 0;
    }
}

/* Küçük Mobil Cihazlar */
@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }

    .logo-image {
        max-width: 250px;
        max-height: 550px;
    }

    .header-contact .phone-link {
        font-size: 16px;
        padding: 8px 15px;
    }

    .hero-main-title {
        font-size: 22px;
    }
    
    .hero-subtitle {
        font-size: 13px;
    }
    
    .hero-quick-links {
        flex-direction: column;
        gap: 8px;
    }
    
    .quick-link-btn {
        width: 100%;
        text-align: center;
        padding: 10px;
    }
    
    .search-form-wrapper {
        padding: 20px 15px;
        margin-top: 30px;
    }
    
    .search-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .search-btn {
        width: 100%;
        padding: 14px;
    }
    
    .favorite-searches {
        flex-direction: row;
        align-items: center;
        gap: 8px;
        margin-top: 20px;
        justify-content: center;
    }
    
    .favorite-label {
        margin-right: 5px;
        margin-bottom: 0;
    }
    
    .favorite-btn {
        padding: 6px 12px;
        font-size: 12px;
    }
    
    .categories-list-wrapper {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        max-width: 100%;
    }
    
    .categories-column {
        gap: 5px;
    }
    
    .category-item {
        padding: 7px 10px;
        font-size: 12px;
    }
    
    .category-count {
        font-size: 10px;
    }
    
    .category-name {
        font-size: 12px;
    }
    
    .cities-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
        margin-top: 20px;
    }
    
    .city-item {
        padding: 12px 8px;
        min-height: 70px;
    }
    
    .city-name {
        font-size: 13px;
        margin-bottom: 4px;
    }
    
    .city-count {
        font-size: 10px;
    }
    
    .companies-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .company-card {
        border-radius: 15px;
    }
    
    .company-card-inner {
        padding: 20px;
    }
    
    .company-header {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .company-header h3 {
        font-size: 18px;
    }
    
    .company-actions {
        flex-direction: column;
    }
    
    .company-phone-btn,
    .company-detail-btn {
        width: 100%;
    }
    
    .company-actions {
        flex-direction: column;
    }
    
    .company-phone-btn,
    .company-detail-btn {
        width: 100%;
    }

    .hero-text h2 {
        font-size: 24px;
    }

    .hero-text p {
        font-size: 16px;
    }

    .service-request-form h3 {
        font-size: 18px;
    }

    .section-title {
        font-size: 22px;
    }

    .mobile-call-link {
        font-size: 20px;
        padding: 14px 15px;
    }

    .mobile-call-icon {
        font-size: 22px;
    }

}

/* Yatay (Landscape) Mobil Cihazlar */
@media (max-width: 768px) and (orientation: landscape) {
    .hero-slider {
        min-height: 400px;
        padding: 40px 0 20px;
    }
    
    .hero-main-title {
        font-size: 22px;
    }
    
    .hero-subtitle {
        font-size: 13px;
    }
    
    .hero-quick-links {
        flex-direction: column;
        gap: 8px;
    }
    
    .quick-link-btn {
        width: 100%;
        text-align: center;
    }

    .mobile-call-button {
        position: fixed;
    }
}

