/* Vidanjör Web Sitesi - Ana CSS Dosyası */

/* Reset ve Temel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Lacivert paleti */
    --navy-dark: #0A1F44;
    --primary-color: #1B3A6B;
    --navy-light: #2E5090;

    /* Kırmızı paleti */
    --red-dark: #8B1E1E;
    --secondary-color: #C1272D;
    --red-corporate: #B22222;

    --text-color: #333;
    --light-bg: #f5f5f5;
    --white: #ffffff;
    --border-color: #ddd;
    --success-color: #28a745;
    --error-color: #dc3545;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
    font-display: swap;
    overflow-x: hidden;
    max-width: 100%;
}

html {
    overflow-x: hidden;
}

/* Font Awesome ikonları - renksiz, metin rengini alır */
.site-icon {
    display: inline-block;
    line-height: 1;
    color: currentColor;
    font-style: normal;
}

.site-icon.dropdown-arrow-icon {
    font-size: 0.75em;
    margin-left: 0.2rem;
    transition: transform 0.3s;
}

.main-navigation .dropdown:hover .dropdown-arrow-icon {
    transform: rotate(180deg);
}

.btn .site-icon {
    margin-right: 0.4rem;
}

.fc-label .site-icon {
    margin-right: 0.35rem;
    font-size: 0.85em;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Stilleri - Beyaz Kurumsal */
.site-header {
    background: var(--white);
    color: var(--text-color);
    padding: 0.75rem 0;
    box-shadow: 0 2px 12px rgba(10, 31, 68, 0.08);
    position: relative;
    z-index: 1000;
    border-bottom: 3px solid var(--secondary-color);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.logo {
    margin-left: 1.25rem;
    flex-shrink: 0;
}

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

.logo-text-wrap {
    display: flex;
    flex-direction: column;
    min-width: 240px;
}

.logo-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1.15;
    letter-spacing: 0.06em;
}

.logo-tagline {
    margin-top: 0.35rem;
    display: block;
    padding: 0;
    background: transparent;
    border-radius: 0;
}

.logo-tagline-inner {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0.4rem 1.75rem 0.4rem 1.1rem;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    clip-path: polygon(12px 0, 100% 0, calc(100% - 12px) 100%, 0 100%);
}

.logo h1 {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.logo a {
    text-decoration: none;
}

.main-navigation > ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.main-navigation a {
    color: var(--navy-dark);
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 500;
    font-size: 0.95rem;
}

.main-navigation a:hover,
.main-navigation li.active > a,
.main-navigation li.active .dropdown-toggle {
    color: var(--secondary-color);
    font-weight: 700;
}

/* Dropdown Menü Stilleri */
.main-navigation .dropdown {
    position: relative;
}

.main-navigation .dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.main-navigation .dropdown-arrow {
    font-size: 0.8em;
    transition: transform 0.3s;
}

.main-navigation .dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.main-navigation .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    display: block;
    flex-direction: column;
    gap: 0;
    background: var(--white);
    min-width: 280px;
    box-shadow: 0 8px 24px rgba(10, 31, 68, 0.18);
    border-radius: 8px;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
    z-index: 1100;
    max-height: 420px;
    overflow-y: auto;
    border: 1px solid rgba(10, 31, 68, 0.08);
}

.main-navigation .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.main-navigation .dropdown-menu li {
    display: block;
}

.main-navigation .dropdown-menu a {
    display: block;
    padding: 0.7rem 1.2rem;
    color: var(--text-color);
    white-space: nowrap;
    transition: background-color 0.2s, color 0.2s;
}

.main-navigation .dropdown-menu a:hover {
    background-color: var(--primary-color);
    color: var(--white);
    font-weight: 700;
}

/* Dropdown Scrollbar Özelleştirme */
.main-navigation .dropdown-menu::-webkit-scrollbar {
    width: 6px;
}

.main-navigation .dropdown-menu::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.main-navigation .dropdown-menu::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

.main-navigation .dropdown-menu::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

.header-contact {
    text-align: right;
    flex-shrink: 0;
}

.header-phone-info {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.5rem;
    margin-bottom: 0.25rem;
}

.badge-24 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--secondary-color);
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 800;
    padding: 0.22rem 0.55rem;
    border-radius: 5px;
    letter-spacing: 0.04em;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.header-phone-label {
    font-size: 0.95rem;
    color: var(--secondary-color);
    font-weight: 800;
    letter-spacing: 0.01em;
    text-transform: uppercase;
}

.header-phone-number {
    display: block;
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--primary-color);
    text-decoration: none;
    line-height: 1.15;
    letter-spacing: 0.01em;
}

.header-phone-number:hover {
    color: var(--secondary-color);
}

.header-contact .phone-button {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    border-radius: 5px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: background-color 0.3s;
    white-space: nowrap;
}

.header-contact .phone-button:hover {
    background-color: var(--red-dark);
}

/* Mobil Menü Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    transition: all 0.3s;
}

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

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

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

/* Main Content */
.main-content {
    min-height: 60vh;
}

.page-content {
    padding: 3rem 0;
}

/* Anasayfa slider header'a yapışık olsun */
.page-content.anasayfa {
    padding-top: 0;
}

.page-header {
    text-align: center;
    margin-bottom: 3rem;
}

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

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary-color), var(--navy-dark));
    color: var(--white);
    padding: 5rem 0;
    text-align: center;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

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

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

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

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

.btn-large {
    padding: 1rem 3rem;
    font-size: 1.2rem;
}

.btn-outline-dark {
    display: inline-block;
    padding: 0.8rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
    font-size: 1rem;
    cursor: pointer;
}

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

.btn-outline-dark.btn-large {
    padding: 1rem 3rem;
    font-size: 1.2rem;
}

/* Services Grid */
.services-overview,
.why-us {
    padding: 3rem 0;
}

.services-overview h2,
.why-us h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

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

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

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

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

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

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-item {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 10px;
}

.feature-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* Services Detailed */
.services-detailed {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-detail {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.service-detail h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-detail ul {
    margin-top: 1rem;
    padding-left: 2rem;
}

.service-detail li {
    margin-bottom: 0.5rem;
}

/* About Content */
.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-section {
    margin-bottom: 2rem;
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 10px;
}

.about-section h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.values-list {
    list-style: none;
    padding: 0;
}

.values-list li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.values-list li:before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

/* Contact */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info-item {
    margin-bottom: 2rem;
}

.contact-info-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.05rem;
}

.contact-info-item a {
    color: var(--text-color);
    text-decoration: none;
}

.contact-info-item a:hover {
    color: var(--primary-color);
}

/* İletişim sayfası - kurumsal tasarım */
.page-content.iletisim {
    padding-bottom: 0;
}

.page-content.iletisim .section-heading--v2 {
    margin-bottom: 2rem;
}

.contact-quick-actions {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 720px;
    margin: 0 auto 2.75rem;
}

.contact-quick-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.1rem 1.35rem;
    text-decoration: none;
    color: var(--white);
    border-radius: 0;
    clip-path: polygon(12px 0, 100% 0, calc(100% - 12px) 100%, 0 100%);
    transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.contact-quick-btn .site-icon {
    font-size: 1.35rem;
    flex-shrink: 0;
}

.contact-quick-btn-text {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    min-width: 0;
}

.contact-quick-btn-text small {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0.88;
}

.contact-quick-btn-text strong {
    font-size: 1.05rem;
    font-weight: 800;
    line-height: 1.25;
}

.contact-quick-btn--phone {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--navy-dark) 100%);
}

.contact-quick-btn--wa {
    background: linear-gradient(135deg, #25D366 0%, #1da851 100%);
}

.contact-quick-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18);
    filter: brightness(1.04);
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(280px, 380px) 1fr;
    gap: 2rem;
    align-items: start;
    margin-bottom: 3rem;
}

.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.15rem 1.2rem;
    background: var(--white);
    border: 1px solid #e8ecf2;
    border-left: 4px solid var(--primary-color);
    box-shadow: 0 2px 12px rgba(10, 31, 68, 0.06);
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.contact-card:hover {
    box-shadow: 0 6px 20px rgba(10, 31, 68, 0.1);
    transform: translateX(3px);
}

.contact-card--phone { border-left-color: var(--secondary-color); }
.contact-card--email { border-left-color: var(--primary-color); }
.contact-card--address { border-left-color: var(--navy-dark); }
.contact-card--hours { border-left-color: #1a7a3c; }

.contact-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    background: var(--light-bg);
    color: var(--primary-color);
    clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
}

.contact-card--phone .contact-card-icon {
    background: rgba(193, 39, 45, 0.1);
    color: var(--secondary-color);
}

.contact-card--hours .contact-card-icon {
    background: rgba(26, 122, 60, 0.1);
    color: #1a7a3c;
}

.contact-card-label {
    display: block;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--secondary-color);
    margin-bottom: 0.3rem;
}

.contact-card-body p {
    margin: 0;
    color: #4a5568;
    font-size: 0.95rem;
    line-height: 1.55;
}

.contact-card-body a {
    color: var(--navy-dark);
    text-decoration: none;
    font-weight: 700;
    transition: color 0.2s;
}

.contact-card-body a:hover {
    color: var(--secondary-color);
}

.contact-trust-box {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    margin-top: 0.5rem;
    padding: 1.15rem 1.2rem;
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--primary-color) 100%);
    color: var(--white);
    clip-path: polygon(14px 0, 100% 0, calc(100% - 14px) 100%, 0 100%);
}

.contact-trust-box strong {
    display: block;
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
}

.contact-trust-box p {
    margin: 0;
    font-size: 0.85rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.82);
}

.contact-form-panel {
    background: var(--white);
    border: 1px solid #e8ecf2;
    box-shadow: 0 4px 24px rgba(10, 31, 68, 0.08);
    padding: 2rem 2.25rem;
    position: relative;
}

.contact-form-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color) 0%, var(--primary-color) 100%);
}

.contact-form-head {
    margin-bottom: 1.75rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid #eef1f6;
}

.contact-form-head h2 {
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--navy-dark);
    margin-bottom: 0.4rem;
}

.contact-form-head p {
    margin: 0;
    color: #5a6478;
    font-size: 0.95rem;
    line-height: 1.6;
}

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

.contact-form--corporate .form-group label {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--navy-dark);
    margin-bottom: 0.45rem;
}

.contact-form--corporate .form-group input,
.contact-form--corporate .form-group textarea {
    border: 1px solid #d8dee8;
    border-radius: 0;
    padding: 0.85rem 1rem;
    background: #fafbfc;
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.contact-form--corporate .form-group input:focus,
.contact-form--corporate .form-group textarea:focus {
    border-color: var(--primary-color);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(27, 58, 107, 0.1);
}

.contact-form--corporate .form-group input::placeholder,
.contact-form--corporate .form-group textarea::placeholder {
    color: #9aa5b5;
}

.contact-form-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    margin-top: 0.25rem;
    padding: 0.95rem 1.5rem;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 0;
    clip-path: polygon(12px 0, 100% 0, calc(100% - 12px) 100%, 0 100%);
}

.contact-form-submit .site-icon {
    font-size: 0.95rem;
}

/* Contact Form */
.contact-form {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 10px;
}

.contact-form--corporate {
    background: transparent;
    padding: 0;
    border-radius: 0;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    max-width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
}

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

/* Alerts */
.alert {
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 5px;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

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

.blog-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.blog-card h2 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.blog-date {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
}

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

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

.reference-card {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.reference-stars {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.reference-text {
    font-style: italic;
    margin-bottom: 1rem;
}

.reference-author {
    font-weight: bold;
    color: var(--primary-color);
}

/* 404 Error */
.error-404 {
    text-align: center;
    padding: 5rem 0;
}

.error-code {
    font-size: 8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.error-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

/* CTA Section */
.cta-section {
    text-align: center;
    background: var(--light-bg);
    padding: 3rem;
    border-radius: 10px;
    margin-top: 3rem;
}

.cta-section h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

/* Footer */
.site-footer {
    background: #071428;
    color: var(--white);
    padding: 0;
    margin-top: 0;
}

.footer-accent-bar {
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color) 0%, var(--secondary-color) 28%, var(--primary-color) 100%);
}

.footer-main {
    display: grid;
    grid-template-columns: 1.35fr 1fr 1fr 1.15fr;
    gap: 2.5rem;
    padding: 3rem 0 2.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand-name {
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 0.35rem;
}

.footer-brand-tag {
    color: var(--secondary-color);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.footer-brand-desc {
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.9rem;
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.footer-hotline {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--white);
    text-decoration: none;
    margin-bottom: 1rem;
    transition: color 0.25s;
}

.footer-hotline:hover {
    color: var(--secondary-color);
}

.footer-areas-link {
    display: inline-block;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
    transition: color 0.25s, border-color 0.25s;
}

.footer-areas-link:hover {
    color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.footer-heading {
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 1.15rem;
    padding-bottom: 0.55rem;
    border-bottom: 2px solid var(--secondary-color);
    display: inline-block;
}

.footer-bottom {
    text-align: center;
    padding: 1.25rem 0 1.5rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.45);
}

.logo-icon,
.footer-logo-icon,
.logo-icon-header {
    display: none !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .site-header {
        padding: 0.6rem 0;
    }

    .header-content {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        gap: 0.5rem;
        position: relative;
    }
    
    .mobile-menu-toggle {
        display: flex;
        position: relative;
        right: auto;
        top: auto;
        order: 2;
        flex-shrink: 0;
        margin-left: auto;
    }
    
    .main-navigation {
        display: none;
        width: 100%;
        order: 4;
        flex-basis: 100%;
    }
    
    .main-navigation.active {
        display: block;
        background: var(--navy-dark);
        border-radius: 8px;
        margin-top: 0.5rem;
        padding: 0.5rem;
    }
    
    .main-navigation.active a,
    .main-navigation.active .dropdown-toggle {
        color: var(--white);
    }
    
    .main-navigation.active li.active > a {
        color: var(--secondary-color);
    }
    
    .main-navigation > ul {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
        padding: 1rem 0;
    }
    
    .main-navigation li {
        width: 100%;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        padding: 0.5rem 0;
    }
    
    .header-contact {
        order: 3;
        width: 100%;
        flex-basis: 100%;
        text-align: center;
        padding-top: 0.5rem;
        margin-top: 0.25rem;
        border-top: 1px solid #eee;
    }
    
    .header-phone-info {
        justify-content: center;
    }

    .header-phone-number {
        font-size: 1.45rem;
    }
    
    .logo {
        order: 1;
        width: auto;
        flex: 1 1 auto;
        min-width: 0;
        max-width: calc(100% - 52px);
        padding-right: 0.5rem;
        margin-left: 0;
    }

    .logo-text-wrap {
        min-width: 0;
    }

    .logo-title {
        font-size: 1.05rem;
        letter-spacing: 0.03em;
        word-break: break-word;
    }

    .logo-tagline-inner {
        font-size: 0.62rem;
        padding: 0.3rem 1rem 0.3rem 0.75rem;
        max-width: 100%;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-layout {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-quick-actions {
        grid-template-columns: 1fr;
        margin-bottom: 2rem;
    }

    .contact-quick-btn {
        padding: 1rem 1.15rem;
    }

    .contact-form-panel {
        padding: 1.5rem 1.25rem;
    }

    .contact-form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-form {
        padding: 1.25rem;
    }

    .reviews-bar {
        grid-template-columns: 1fr;
        gap: 1rem;
        text-align: center;
        padding-bottom: 1.5rem;
    }

    .reviews-bar-left,
    .reviews-bar-right {
        text-align: center;
        font-size: 0.85rem;
        order: 2;
    }

    .reviews-google {
        order: 1;
        justify-self: center;
        margin: 0 auto;
    }

    .ref-track {
        gap: 2.25rem;
        animation-duration: 24s;
    }

    .ref-item {
        height: 46px;
    }

    .ref-item img {
        max-height: 44px;
        max-width: 130px;
    }

    .ref-marquee::before,
    .ref-marquee::after {
        width: 45px;
    }

    .page-content {
        padding: 2rem 0;
    }

    .page-header {
        margin-bottom: 2rem;
    }
    
    .page-header h1 {
        font-size: 1.75rem;
    }
}

/* ==========================================
   SLIDER STİLLERİ - Modern & Lightweight
   ========================================== */
.hero-slider {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    background: #000;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

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

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.05) 0%,
        rgba(0, 0, 0, 0.12) 45%,
        rgba(0, 0, 0, 0.38) 100%
    );
    z-index: 2;
    pointer-events: none;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    z-index: 3;
    text-align: center;
    color: var(--white);
    padding: 2rem 1rem;
}

.slide-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.7);
    animation: slideInUp 0.8s ease-out;
}

.slide-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 8px rgba(0,0,0,0.7);
    animation: slideInUp 0.8s ease-out 0.2s both;
}

.slide-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    animation: slideInUp 0.8s ease-out 0.4s both;
}

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

/* Slider Kontrolleri */
.slider-prev,
.slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 4;
    background: rgba(255,255,255,0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 2rem;
    color: var(--primary-color);
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.slider-prev {
    left: 20px;
}

.slider-next {
    right: 20px;
}

.slider-prev:hover,
.slider-next:hover {
    background: var(--white);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 16px rgba(0,0,0,0.3);
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    gap: 10px;
}

.slider-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    border: 2px solid rgba(255,255,255,0.8);
    cursor: pointer;
    transition: all 0.3s;
    padding: 0;
}

.slider-dots .dot:hover {
    background: rgba(255,255,255,0.8);
    transform: scale(1.2);
}

.slider-dots .dot.active {
    background: var(--white);
    transform: scale(1.3);
}

/* Hizmet Kartları - Güncellenmiş */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    text-decoration: none;
    color: var(--text-color);
    display: block;
}

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

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.service-card p {
    color: #666;
    line-height: 1.6;
}

.service-link-arrow {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
    color: var(--secondary-color);
    opacity: 0;
    transition: all 0.3s;
}

.service-card:hover .service-link-arrow {
    opacity: 1;
    transform: translateX(5px);
}

.services-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Responsive - Slider */
@media (max-width: 768px) {
    .hero-slider {
        height: 48vh;
        min-height: 300px;
        max-height: 480px;
        aspect-ratio: unset;
    }

    .slider-container {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
    }

    .slide img {
        object-fit: cover;
        object-position: center center;
    }
    
    .slide-title {
        font-size: 2rem;
    }
    
    .slide-subtitle {
        font-size: 1.1rem;
    }
    
    .slide-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .slider-prev,
    .slider-next {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
    
    .slider-prev {
        left: 10px;
    }
    
    .slider-next {
        right: 10px;
    }
    
    .slider-dots {
        bottom: 15px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* ==========================================
   SABİT İLETİŞİM BUTONLARI - Mobil & Desktop
   ========================================== */
.fixed-contact-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    display: flex;
    gap: 0;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}

.fixed-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 20px;
    text-decoration: none;
    color: white;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.fixed-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.1);
    transition: left 0.3s ease;
}

.fixed-btn:hover::before {
    left: 0;
}

.fixed-btn-call {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--navy-dark) 100%);
}

.fixed-btn-call:hover {
    background: linear-gradient(135deg, var(--navy-dark) 0%, #061528 100%);
    transform: translateY(-2px);
}

.fixed-btn-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.fixed-btn-whatsapp:hover {
    background: linear-gradient(135deg, #128C7E 0%, #075E54 100%);
    transform: translateY(-2px);
}

.fixed-btn .btn-icon {
    font-size: 1.35rem;
    width: auto;
    height: auto;
    flex-shrink: 0;
}

.fixed-btn .btn-text {
    font-size: 15px;
    white-space: nowrap;
}

/* Pulse animasyonu (dikkat çekmek için) */
@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
}

.fixed-btn-whatsapp {
    animation: pulse 2s infinite;
}

/* Desktop görünümü - Sağ alt köşede yuvarlak butonlar */
@media (min-width: 769px) {
    .fixed-contact-buttons {
        flex-direction: column;
        bottom: 30px;
        right: 30px;
        left: auto;
        width: auto;
        gap: 14px;
        box-shadow: none;
    }
    
    .fixed-btn {
        width: 58px;
        height: 58px;
        min-width: 58px;
        min-height: 58px;
        max-width: 58px;
        max-height: 58px;
        flex: none;
        aspect-ratio: 1;
        border-radius: 50%;
        padding: 0;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.22);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    
    .fixed-btn:hover {
        width: 58px;
        max-width: 58px;
        border-radius: 50%;
        transform: translateY(-4px) scale(1.06);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
    }
    
    .fixed-btn .btn-text {
        display: none;
    }
    
    .fixed-btn .btn-icon {
        font-size: 1.25rem;
    }
}

/* Tablet görünümü */
@media (min-width: 481px) and (max-width: 768px) {
    .fixed-btn {
        padding: 18px 16px;
        min-height: 58px;
        font-size: 16px;
    }
    
    .fixed-btn .btn-icon {
        font-size: 1.2rem;
    }
}

/* Küçük mobil cihazlar */
@media (max-width: 480px) {
    .fixed-btn {
        padding: 18px 12px;
        min-height: 58px;
        font-size: 15px;
    }
    
    .fixed-btn .btn-text {
        font-size: 15px;
    }
    
    .fixed-btn .btn-icon {
        font-size: 1.2rem;
    }
}

/* Ana içeriğe padding ekle (butonlar içeriği kapatmasın) */
body {
    padding-bottom: 58px;
}

@media (max-width: 768px) {
    body {
        padding-bottom: 62px;
    }
}

@media (min-width: 769px) {
    body {
        padding-bottom: 0;
    }
}

/* Mobil dropdown düzeltmesi */
@media (max-width: 768px) {
    .main-navigation .dropdown-menu {
        position: static;
        display: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: rgba(0, 0, 0, 0.15);
        margin-top: 0.5rem;
        max-height: none;
        min-width: 100%;
        border: none;
        border-radius: 6px;
        overflow: hidden;
    }
    
    .main-navigation .dropdown.active .dropdown-menu {
        display: block;
    }
    
    .main-navigation .dropdown-menu li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }
    
    .main-navigation .dropdown-menu li:last-child {
        border-bottom: none;
    }
    
    .main-navigation .dropdown-menu a {
        color: var(--white);
        text-align: center;
    }
    
    .main-navigation .dropdown-menu a:hover {
        background: rgba(255, 255, 255, 0.1);
        color: var(--white);
    }
    
    .main-navigation .dropdown-toggle {
        width: 100%;
        justify-content: center;
    }
}

/* ==========================================
   BLOG LİSTE SAYFASI
   ========================================== */
.blog-list-page {
    padding: 2rem 0 4rem;
}

.blog-list-page .page-header {
    text-align: center;
    margin-bottom: 3rem;
}

.blog-list-page .page-header h1 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.blog-list-page .page-header p {
    color: #666;
    font-size: 1.1rem;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.blog-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    padding: 1.5rem;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

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

.blog-card-header time {
    color: #999;
    font-size: 0.875rem;
}

.blog-card-title {
    margin: 1rem 0;
    font-size: 1.25rem;
    line-height: 1.4;
}

.blog-card-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

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

.blog-card-excerpt {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.blog-read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    align-self: flex-start;
}

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

.no-content {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem;
    color: #999;
}

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

    .blog-list-page .page-header h1 {
        font-size: 2rem;
    }
}

/* ==========================================
   BLOG DETAY SAYFASI
   ========================================== */
.blog-detay-page {
    padding: 2rem 0;
}

.breadcrumb {
    padding: 1rem 0;
    color: #666;
    font-size: 0.9rem;
}

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

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

.blog-header {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f0f0f0;
}

.blog-header h1 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.blog-meta time {
    color: #999;
    font-size: 0.95rem;
}

.blog-body {
    line-height: 1.8;
    color: #333;
    overflow-wrap: anywhere;
}

.blog-body img,
.blog-body video,
.blog-body iframe,
.blog-body table {
    max-width: 100%;
    height: auto;
}

.blog-body table {
    display: block;
    overflow-x: auto;
}

.blog-body h2 {
    color: var(--primary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.blog-body p {
    margin-bottom: 1.5rem;
}

.blog-body .lead {
    font-size: 1.15rem;
    color: #555;
    font-weight: 500;
}

.blog-body ul {
    margin: 1rem 0 1.5rem 2rem;
}

.blog-body li {
    margin-bottom: 0.8rem;
}

.blog-body a {
    color: var(--primary-color);
    text-decoration: underline;
}

.blog-body .cta-box {
    background: linear-gradient(135deg, var(--primary-color), var(--navy-dark));
    color: white;
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
    text-align: center;
}

.blog-body .cta-box h3 {
    color: white;
    margin-bottom: 1rem;
}

.blog-body .btn-call {
    display: inline-block;
    background: var(--secondary-color);
    color: white;
    padding: 1rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
}

.blog-body .btn-call:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
}

.mobile-cta-box {
    background: linear-gradient(135deg, var(--secondary-color), var(--red-corporate));
    color: white;
    padding: 2rem;
    border-radius: 15px;
    margin: 3rem 0;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    box-shadow: 0 5px 20px rgba(255,102,0,0.3);
}

.cta-icon {
    font-size: 2rem;
    line-height: 1;
    flex-shrink: 0;
}

.cta-icon .site-icon {
    font-size: 2rem;
}

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

.cta-content {
    flex: 1;
}

.cta-content h3 {
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.cta-content p {
    opacity: 0.95;
    font-size: 0.95rem;
}

.cta-call-button {
    background: white;
    color: var(--secondary-color);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s;
    white-space: nowrap;
}

.cta-call-button:hover {
    background: #f0f0f0;
    transform: scale(1.05);
}

.related-posts {
    margin-top: 4rem;
}

.related-posts h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

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

.related-card {
    background: #f9f9f9;
    padding: 1.5rem;
    border-radius: 10px;
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
    border: 1px solid #e8ecf2;
}

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

.related-card h3 {
    color: #333;
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
}

.related-card p {
    color: #666;
    margin-bottom: 1rem;
}

.related-card .btn {
    margin-top: auto;
}

.related-card .btn-outline-dark {
    border-color: var(--primary-color);
    color: var(--primary-color);
    font-weight: 600;
}

.related-card .btn-outline-dark:hover {
    background: var(--primary-color);
    color: var(--white);
}

@media (max-width: 768px) {
    .blog-header h1 {
        font-size: 1.8rem;
    }

    .mobile-cta-box {
        flex-direction: column;
        text-align: center;
    }

    .cta-icon {
        font-size: 2.5rem;
    }

    .related-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================
   HİZMET DETAY SAYFASI
   ========================================== */
.hizmet-detay-page {
    padding: 2rem 0;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

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

.hizmet-content h1 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
}

.hizmet-content h2 {
    color: var(--primary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.hizmet-content .lead {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 2rem;
}

.hizmet-content ul {
    margin: 1rem 0 1rem 2rem;
}

.hizmet-content ul li {
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.hizmet-content .cta-box {
    background: linear-gradient(135deg, var(--primary-color), var(--navy-dark));
    color: white;
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
    text-align: center;
}

.hizmet-content .cta-box h3 {
    color: white;
    margin-bottom: 1rem;
}

.hizmet-content .cta-box p {
    margin-bottom: 1.5rem;
}

.hizmet-content .btn-call {
    display: inline-block;
    background: var(--secondary-color);
    color: white;
    padding: 1rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: bold;
    transition: all 0.3s;
}

.hizmet-content .btn-call:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.related-services {
    margin-top: 4rem;
}

.related-services h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.related-services .service-card .btn-outline-dark {
    border-color: var(--primary-color);
    color: var(--primary-color);
    font-weight: 600;
}

.related-services .service-card .btn-outline-dark:hover {
    background: var(--primary-color);
    color: var(--white);
}

.hizmet-cta-section {
    padding: 2rem 1.5rem;
}

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

.breadcrumb {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    word-break: break-word;
    line-height: 1.6;
}

.hizmet-content img,
.hizmet-content video,
.hizmet-content iframe,
.hizmet-content table {
    max-width: 100%;
    height: auto;
}

.hizmet-content table {
    display: block;
    overflow-x: auto;
}

/* ==========================================
   AVRUPA TARZI ANASAYFA BİLEŞENLERİ
   ========================================== */

/* Bölüm başlıkları - özgün kurumsal tasarım */
.section-heading {
    margin-bottom: 2.5rem;
}

.section-heading--v2 {
    text-align: center;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    border-left: none;
    position: relative;
}

.section-heading--v2::before {
    content: '';
    display: block;
    width: 52px;
    height: 3px;
    background: var(--secondary-color);
    margin: 0 auto 1.15rem;
    clip-path: polygon(6px 0, 100% 0, calc(100% - 6px) 100%, 0 100%);
}

.section-heading--v2.section-heading--center,
.section-heading--v2.section-heading--regions {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    border-left: none;
    padding-left: 0;
}

.section-eyebrow {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--secondary-color);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.section-heading--regions .section-eyebrow {
    color: var(--primary-color);
}

.section-heading--v2 h1,
.section-heading--v2 h2 {
    font-size: clamp(1.6rem, 3vw, 2.35rem);
    font-weight: 800;
    color: var(--navy-dark);
    line-height: 1.2;
    margin-bottom: 0.65rem;
    letter-spacing: -0.02em;
    text-transform: none;
}

.section-heading--v2 h1 em,
.section-heading--v2 h2 em {
    font-style: normal;
    color: var(--primary-color);
    position: relative;
}

.section-heading--v2 h1 em::after,
.section-heading--v2 h2 em::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 2px;
    width: 100%;
    height: 8px;
    background: rgba(193, 39, 45, 0.15);
    z-index: -1;
}

.section-title-line {
    width: 72px;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    margin-bottom: 1rem;
    clip-path: polygon(6px 0, 100% 0, calc(100% - 6px) 100%, 0 100%);
}

.section-title-line--center {
    margin-left: auto;
    margin-right: auto;
}

.section-heading--v2 p {
    color: #5a6478;
    font-size: 1.02rem;
    max-width: 640px;
    line-height: 1.75;
    margin: 0 auto;
}

/* Eski stil - geriye dönük uyumluluk */
.heading-blue { color: var(--primary-color); }
.heading-red { color: var(--secondary-color); }

/* Slider CTA - her slaytta tek buton + telefon */
.slide-cta-wrap {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 4rem;
    pointer-events: none;
}

.slider-center-stack {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: min(94%, 640px);
    pointer-events: none;
}

.slider-center-stack .slider-pill,
.slider-center-stack .slider-emergency-box,
.slider-center-stack .emergency-phone-btn {
    pointer-events: auto;
}

.slider-pill {
    display: block;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding: 0.35rem 0.5rem;
    clip-path: none;
    border-radius: 0;
    background: transparent;
    border: none;
    color: var(--white);
    font-weight: 800;
    font-size: 2.1rem;
    text-decoration: none;
    letter-spacing: 0.05em;
    text-align: center;
    transition: transform 0.25s ease, text-shadow 0.25s ease, filter 0.25s ease;
    line-height: 1.35;
    margin: 0 0 1.1rem;
    box-shadow: none;
    text-shadow:
        0 1px 2px rgba(0, 0, 0, 0.95),
        0 3px 10px rgba(0, 0, 0, 0.75),
        0 6px 22px rgba(0, 0, 0, 0.45);
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.35));
}

.slider-pill:hover {
    transform: translateY(-3px);
    text-shadow:
        0 1px 3px rgba(0, 0, 0, 1),
        0 4px 14px rgba(0, 0, 0, 0.85),
        0 8px 26px rgba(0, 0, 0, 0.55);
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.45));
}

.slider-pill-red,
.slider-pill-blue,
.slider-pill-green {
    background: transparent;
    color: var(--white);
}

.slider-emergency-box {
    position: static;
    width: 100%;
    max-width: 100%;
    margin: 0.35rem 0 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.emergency-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    color: var(--white);
    font-weight: 800;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
    margin: 0 0 0.5rem;
    padding: 0;
}

.emergency-phone-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--white);
    font-size: 1.15rem;
    font-weight: 700;
    padding: 0.8rem 2.4rem 0.8rem 2.1rem;
    text-decoration: none;
    width: auto;
    max-width: 100%;
    box-sizing: border-box;
    white-space: nowrap;
    letter-spacing: 0.02em;
    line-height: 1.35;
    clip-path: polygon(14px 0, 100% 0, calc(100% - 14px) 100%, 0 100%);
    border: 2px solid rgba(255, 255, 255, 0.92);
    border-radius: 0;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.28);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.emergency-phone-pill-red { background: var(--secondary-color); }
.emergency-phone-pill-blue { background: var(--primary-color); }
.emergency-phone-pill-green { background: #1a7a3c; }

.emergency-phone-btn .site-icon {
    font-size: 1.02rem;
}

.emergency-phone-btn:hover {
    transform: translateX(3px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.38);
}

/* Slider ortası - Google değerlendirme rozeti (telefon altı) */
.slider-google-badge {
    align-self: center;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin-top: 2.5rem;
    padding: 0.45rem 1.1rem;
    background: rgba(255, 255, 255, 0.96);
    border-radius: 50px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    text-decoration: none;
    white-space: nowrap;
    pointer-events: auto;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.slider-google-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.4);
}

.slider-google-badge .sg-logo {
    font-family: 'Arial', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: -0.01em;
}

.slider-google-badge .sg-logo .g-blue { color: #4285F4; }
.slider-google-badge .sg-logo .g-red { color: #EA4335; }
.slider-google-badge .sg-logo .g-yellow { color: #FBBC05; }
.slider-google-badge .sg-logo .g-green { color: #34A853; }

.slider-google-badge .sg-score {
    font-weight: 800;
    font-size: 1rem;
    color: #1a1a1a;
}

.slider-google-badge .sg-stars {
    color: #FBBC05;
    font-size: 0.82rem;
    letter-spacing: 0.02em;
}

.slider-google-badge .sg-count {
    font-size: 0.78rem;
    font-weight: 600;
    color: #5f6368;
}

/* ==========================================
   GOOGLE YORUMLARI & REFERANSLAR
   ========================================== */
.section-reviews {
    background: var(--white);
    padding: 0;
}

/* Slider altındaki logo şeridi üstte olduğunda üst kenarı slider'a yapışık */
.ref-marquee--top {
    border-top: none;
}

.reviews-bar {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 1.5rem;
    padding-top: 2rem;
    padding-bottom: 1.75rem;
}

.reviews-bar-side {
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    color: var(--navy-dark);
    line-height: 1.4;
    text-transform: uppercase;
}

.reviews-bar-left {
    text-align: left;
}

.reviews-bar-right {
    text-align: right;
}

.reviews-bar-right .reviews-heart {
    color: var(--secondary-color);
    margin-left: 0.35rem;
    font-size: 0.85rem;
}

.reviews-google {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.65rem 1.25rem;
    background: var(--white);
    border: 1px solid #e6e9f0;
    border-radius: 10px;
    box-shadow: 0 4px 18px rgba(10, 31, 68, 0.08);
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    white-space: nowrap;
}

.reviews-google:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(10, 31, 68, 0.14);
}

.reviews-google-logo {
    font-size: 1.6rem;
    font-weight: 700;
    font-family: 'Arial', sans-serif;
    letter-spacing: -0.01em;
}

.reviews-google-logo .g-blue { color: #4285F4; }
.reviews-google-logo .g-red { color: #EA4335; }
.reviews-google-logo .g-yellow { color: #FBBC05; }
.reviews-google-logo .g-green { color: #34A853; }

.reviews-google-meta {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    padding: 0 0.85rem;
    border-right: 1px solid #e6e9f0;
}

.reviews-google-meta strong {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--navy-dark);
}

.reviews-google-meta small {
    font-size: 0.75rem;
    color: #6b7280;
}

.reviews-google-score {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.15;
}

.reviews-google-score b {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1a1a1a;
}

.reviews-google-score .reviews-loc {
    font-size: 0.7rem;
    color: #6b7280;
    font-weight: 600;
}

.reviews-google-score .reviews-stars {
    color: #FBBC05;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
}

/* Kayan referans logoları */
.ref-marquee {
    position: relative;
    overflow: hidden;
    border-top: 1px solid #eef1f6;
    border-bottom: 1px solid #eef1f6;
    background: linear-gradient(180deg, #fafbfc 0%, #ffffff 100%);
    padding: 1.5rem 0;
}

.ref-marquee::before,
.ref-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 90px;
    z-index: 2;
    pointer-events: none;
}

.ref-marquee::before {
    left: 0;
    background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
}

.ref-marquee::after {
    right: 0;
    background: linear-gradient(270deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
}

.ref-track {
    display: flex;
    align-items: center;
    gap: 3.5rem;
    width: max-content;
    animation: ref-scroll 32s linear infinite;
}

.ref-marquee:hover .ref-track {
    animation-play-state: paused;
}

.ref-item {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
}

.ref-item img {
    max-height: 58px;
    max-width: 170px;
    width: auto;
    object-fit: contain;
    filter: none;
    opacity: 1;
    transition: transform 0.3s ease;
}

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

.ref-item-text {
    font-size: 1.15rem;
    font-weight: 800;
    color: #94a3b8;
    white-space: nowrap;
}

@keyframes ref-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
    .ref-track {
        animation: none;
    }
}

/* Referanslar sayfası - logo ızgarası */
.ref-logo-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin: 2.5rem 0 3rem;
}

.ref-logo-card {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 130px;
    padding: 1.5rem;
    background: var(--white);
    border: 1px solid #e8ecf2;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(10, 31, 68, 0.05);
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ref-logo-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 22px rgba(10, 31, 68, 0.12);
}

.ref-logo-card img {
    max-width: 100%;
    max-height: 80px;
    width: auto;
    object-fit: contain;
}

.ref-logo-text {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--primary-color);
    text-align: center;
}

@media (max-width: 992px) {
    .ref-logo-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 640px) {
    .ref-logo-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.85rem;
    }
    .ref-logo-card {
        min-height: 100px;
        padding: 1rem;
    }
    .ref-logo-card img {
        max-height: 60px;
    }
}

/* Hizmet görsel kartları */
.section-services {
    padding: 4rem 0 0;
    background: var(--white);
}

.section-services .cta-strip {
    margin-top: 0;
}

.service-image-grid-wrap {
    width: 100%;
    padding: 0;
    margin: 0 auto;
}

.service-image-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    width: 100%;
    max-width: 100%;
}

.service-image-card {
    position: relative;
    display: block;
    border-radius: 0;
    overflow: hidden;
    aspect-ratio: 4 / 3.6;
    min-height: 240px;
    text-decoration: none;
    box-shadow: none;
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s ease;
}

.service-image-card:hover {
    transform: translateY(-8px) scale(1.015);
    z-index: 3;
    box-shadow: 0 18px 42px rgba(10, 31, 68, 0.28);
    outline: 3px solid var(--secondary-color);
    outline-offset: -3px;
    filter: none;
}

.service-card-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.55s ease;
}

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

.service-card-bg.has-image::after {
    display: none;
}

.service-card-bg:not(.has-image)::after {
    content: "\f0d1";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -60%);
    font-size: 2.75rem;
    opacity: 0.22;
    color: var(--white);
}

.service-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 31, 68, 0.55) 0%, rgba(10, 31, 68, 0.05) 50%);
    transition: background 0.4s ease;
}

.service-image-card:hover .service-card-overlay {
    background: linear-gradient(to top, rgba(10, 31, 68, 0.35) 0%, rgba(10, 31, 68, 0.1) 55%, transparent 100%);
}

.service-card-title {
    position: absolute;
    bottom: 1rem;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 0.5rem;
    margin: 0;
    z-index: 2;
    line-height: 1.4;
    transition: transform 0.35s ease;
    pointer-events: none;
}

.service-card-pill {
    display: inline-block;
    max-width: 94%;
    padding: 0.8rem 1.6rem 0.8rem 1.3rem;
    clip-path: polygon(14px 0, 100% 0, calc(100% - 14px) 100%, 0 100%);
    border: 2px solid rgba(255, 255, 255, 0.92);
    border-radius: 0;
    color: var(--white);
    font-size: 1rem;
    font-weight: 700;
    text-align: center;
    letter-spacing: 0.02em;
    line-height: 1.4;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.28);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.service-pill-red { background: var(--secondary-color); }
.service-pill-blue { background: var(--primary-color); }
.service-pill-green { background: #1a7a3c; }

.service-image-card:hover .service-card-title {
    transform: translateY(-4px);
}

.service-image-card:hover .service-card-pill {
    transform: translateX(3px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.38);
}

/* Bize Ulaşın CTA - tam yatay şerit */
.section-cta {
    padding: 0;
    background: var(--white);
}

.section-cta--global {
    margin-top: 0;
}

.page-content + .section-cta,
.hizmet-detay-page + .section-cta,
.blog-detay-page + .section-cta,
.blog-list-page + .section-cta {
    margin-top: 0;
}

.section-cta .cta-strip,
.section-services .cta-strip {
    display: flex;
    align-items: stretch;
    width: 100%;
    background: var(--white);
    border-top: 4px solid var(--secondary-color);
    border-bottom: 1px solid #e4e9f0;
    box-shadow: 0 6px 28px rgba(10, 31, 68, 0.07);
}

.cta-strip-info {
    flex: 1;
    padding: 2.25rem 2.5rem 2.25rem 3rem;
    position: relative;
    border-right: 1px solid #e0ddd6;
    background: #f4f3ef;
}

.cta-strip-info::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background: var(--navy-dark);
}

.cta-strip-eyebrow {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--white);
    padding: 0.28rem 0.9rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 0.65rem;
    clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
}

.cta-strip-info h2 {
    font-size: clamp(1.45rem, 2.5vw, 2.1rem);
    font-weight: 800;
    color: var(--navy-dark);
    margin-bottom: 0.35rem;
    letter-spacing: -0.02em;
}

.cta-strip-info p {
    color: #4a5568;
    font-size: 0.98rem;
    line-height: 1.75;
    margin: 0;
    max-width: 680px;
}

.cta-strip-actions {
    display: flex;
    flex-shrink: 0;
}

.cta-strip-btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem 2.75rem;
    text-decoration: none;
    min-width: 230px;
    transition: filter 0.3s ease, transform 0.3s ease;
}

.cta-strip-btn:hover {
    transform: scale(1.02);
    filter: brightness(1.06);
}

.cta-strip-btn-phone {
    background: var(--navy-dark);
    color: var(--white);
}

.cta-strip-btn-wa {
    background: #25D366;
    color: var(--white);
}

.cta-strip-btn-label {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0.85;
    margin-bottom: 0.4rem;
}

.cta-strip-btn strong {
    font-size: clamp(1.2rem, 2vw, 1.55rem);
    font-weight: 800;
    white-space: nowrap;
}

/* Eski CTA sınıfları - geriye dönük */
.cta-box {
    background: linear-gradient(135deg, var(--navy-dark), var(--primary-color));
    color: var(--white);
    border-radius: 16px;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 8px 32px rgba(10, 31, 68, 0.2);
}

.cta-label {
    display: inline-block;
    background: var(--secondary-color);
    padding: 0.3rem 1rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
}

.cta-box h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.cta-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.cta-action-item {
    text-align: center;
}

.cta-action-label {
    display: block;
    font-size: 0.85rem;
    opacity: 0.8;
    margin-bottom: 0.4rem;
}

.cta-phone {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--white);
    text-decoration: none;
}

.cta-phone:hover {
    color: var(--secondary-color);
}

.btn-whatsapp {
    display: inline-block;
    background: #25D366;
    color: var(--white);
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.3s;
}

.btn-whatsapp:hover {
    background: #128C7E;
}

/* Blog anasayfa */
.section-blog {
    padding: 4rem 0;
    background: var(--white);
}

.blog-home-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.blog-home-card {
    background: var(--light-bg);
    border-radius: 12px;
    padding: 1.75rem;
    border: 1px solid var(--border-color);
    transition: box-shadow 0.3s;
}

.blog-home-card:hover {
    box-shadow: 0 6px 20px rgba(10, 31, 68, 0.1);
}

.blog-home-card h3 {
    font-size: 1.05rem;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.blog-home-card h3 a {
    color: var(--primary-color);
    text-decoration: none;
}

.blog-home-card h3 a:hover {
    color: var(--secondary-color);
}

.blog-home-card p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.blog-read-more {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
}

.section-cta-link {
    text-align: center;
    margin-top: 2rem;
}

.btn-outline {
    display: inline-block;
    padding: 0.75rem 2rem;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

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

/* Hizmet bölgeleri */
.section-regions {
    padding: 4rem 0;
    background: var(--light-bg);
}

.regions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem 1.5rem;
}

.region-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #555;
    text-decoration: none;
    font-size: 0.9rem;
    padding: 0.4rem 0;
    transition: color 0.2s;
}

.region-item:hover {
    color: var(--secondary-color);
}

.region-pin {
    color: #aaa;
    flex-shrink: 0;
}

.region-item:hover .region-pin {
    color: var(--secondary-color);
}

/* Footer ek stiller */
.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.4rem;
}

.footer-links a {
    position: relative;
    display: inline-block;
    padding-left: 0.85rem;
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
    font-size: 0.9rem;
    line-height: 1.85;
    transition: color 0.2s, padding-left 0.2s;
}

.footer-links a::before {
    content: '›';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 1rem;
}

.footer-contact-list {
    list-style: none;
}

.footer-contact-list li {
    margin-bottom: 1.1rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.55;
}

.footer-contact-list a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-contact-list a:hover {
    color: var(--secondary-color);
}

.fc-label {
    display: flex;
    align-items: center;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--secondary-color);
    margin-bottom: 0.25rem;
}

.text-muted {
    color: #888;
}

/* Scroll to top */
.scroll-to-top {
    position: fixed;
    bottom: 90px;
    left: 1.5rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    font-size: 1rem;
    cursor: pointer;
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
    box-shadow: 0 4px 12px rgba(10, 31, 68, 0.3);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

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

.scroll-to-top:hover {
    background: var(--navy-dark);
    transform: translateY(-3px);
}

@media (min-width: 769px) {
    .scroll-to-top {
        bottom: 1.5rem;
    }
}

/* Responsive - yeni bileşenler */
@media (max-width: 1400px) {
    .service-image-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 1024px) {
    .service-image-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .regions-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .slide-cta-wrap {
        padding: 0 3.25rem;
    }

    .slider-center-stack {
        max-width: min(88vw, 340px);
    }

    .slider-pill {
        padding: 0.25rem 0.35rem;
        font-size: 1.3rem;
        line-height: 1.35;
        margin-bottom: 0.85rem;
    }

    .slider-emergency-box {
        margin-top: 0.25rem;
    }

    .slider-pill:hover {
        transform: translateY(-2px);
    }

    .emergency-label {
        font-size: 0.68rem;
        gap: 0.35rem;
        margin: 0 0 0.4rem;
        justify-content: center;
        text-align: center;
        flex-wrap: wrap;
        text-shadow: 0 1px 6px rgba(0, 0, 0, 0.7);
    }

    .emergency-label .badge-24 {
        font-size: 0.58rem;
        padding: 0.12rem 0.35rem;
    }

    .emergency-phone-btn {
        font-size: 1.02rem;
        padding: 0.62rem 1.75rem 0.62rem 1.5rem;
        clip-path: polygon(12px 0, 100% 0, calc(100% - 12px) 100%, 0 100%);
    }

    .slider-google-badge {
        margin-top: 1.7rem;
        padding: 0.32rem 0.8rem;
        gap: 0.3rem;
    }
    .slider-google-badge .sg-logo,
    .slider-google-badge .sg-score { font-size: 0.85rem; }
    .slider-google-badge .sg-stars { font-size: 0.72rem; }
    .slider-google-badge .sg-count { font-size: 0.68rem; }

    .service-image-grid-wrap {
        padding: 0;
    }
    .service-image-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0;
    }
    .service-image-card {
        min-height: 195px;
        aspect-ratio: 4 / 3.4;
    }
    .service-card-pill {
        font-size: 0.9rem;
        padding: 0.7rem 1.2rem 0.7rem 1rem;
        clip-path: polygon(12px 0, 100% 0, calc(100% - 12px) 100%, 0 100%);
    }
    .blog-home-grid {
        grid-template-columns: 1fr;
    }
    .regions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .section-heading--v2 {
        padding-left: 0;
    }
    .section-heading--v2 h1,
    .section-heading--v2 h2 {
        font-size: 1.45rem;
    }
    .cta-strip {
        flex-direction: column;
    }
    .cta-strip-info {
        padding: 2rem 1.5rem;
        border-right: none;
        border-bottom: 1px solid #e0ddd6;
        text-align: center;
        background: #f4f3ef;
    }
    .cta-strip-info::before {
        width: 100%;
        height: 4px;
        bottom: auto;
    }
    .cta-strip-actions {
        flex-direction: column;
    }
    .cta-strip-btn {
        min-width: 100%;
        padding: 1.5rem;
        width: 100%;
    }

    .cta-strip-btn strong {
        white-space: normal;
        word-break: break-word;
        font-size: 1.15rem;
    }

    .cta-strip-info p {
        max-width: 100%;
    }

    .service-image-card:hover {
        transform: none;
    }

    .hizmet-content {
        padding: 1.25rem;
        overflow-wrap: anywhere;
    }

    .hizmet-content h1 {
        font-size: 1.65rem;
    }

    .hizmet-content h2 {
        font-size: 1.35rem;
    }

    .hizmet-cta-section {
        padding: 1.5rem 1rem;
        margin-top: 2rem;
    }

    .hizmet-cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hizmet-cta-buttons .btn {
        width: 100%;
        text-align: center;
    }

    .mobile-cta-box {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1.5rem;
    }

    .cta-section {
        padding: 2rem 1.25rem;
        margin-top: 2rem;
    }
    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        padding: 2.5rem 0 2rem;
    }
    .footer-brand-col {
        grid-column: 1 / -1;
        text-align: center;
    }
    .footer-hotline {
        justify-content: center;
    }
    .main-navigation > ul {
        gap: 1rem;
    }
}

@media (min-width: 1200px) {
    .slide-cta-wrap {
        padding: 0 5rem;
    }

    .slider-center-stack {
        max-width: min(90%, 680px);
    }

    .slider-pill {
        font-size: 2.45rem;
        padding: 0.4rem 0.5rem;
        margin-bottom: 0.6rem;
    }
}

@media (min-width: 1600px) {
    .service-image-grid-wrap {
        padding: 0;
    }
    .service-image-card {
        min-height: 270px;
        aspect-ratio: 4 / 3.7;
    }
    .service-card-pill {
        font-size: 1.08rem;
        padding: 0.85rem 1.75rem 0.85rem 1.4rem;
    }
}

@media (max-width: 480px) {
    .slide-cta-wrap {
        padding: 0 2.75rem;
    }

    .slider-center-stack {
        max-width: min(84vw, 280px);
    }

    .slider-pill {
        font-size: 1.15rem;
        padding: 0.2rem 0.3rem;
        margin-bottom: 0.75rem;
    }

    .slider-emergency-box {
        margin-top: 0.2rem;
    }

    .emergency-phone-btn {
        font-size: 0.98rem;
        padding: 0.58rem 1.55rem 0.58rem 1.3rem;
        clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
    }

    .slider-google-badge {
        margin-top: 1.5rem;
        padding: 0.3rem 0.7rem;
        gap: 0.25rem;
    }
    .slider-google-badge .sg-logo,
    .slider-google-badge .sg-score { font-size: 0.8rem; }
    .slider-google-badge .sg-stars { font-size: 0.68rem; }
    .slider-google-badge .sg-count { font-size: 0.62rem; }

    .hero-slider {
        height: 44vh;
        min-height: 280px;
        max-height: 420px;
    }

    .slide img {
        object-fit: cover;
        object-position: center center;
    }

    .slider-dots {
        bottom: 10px;
    }
    .service-image-grid {
        grid-template-columns: 1fr;
    }
    .service-image-card {
        min-height: 220px;
        aspect-ratio: 16 / 10;
    }
    .service-card-pill {
        font-size: 1rem;
        padding: 0.75rem 1.5rem 0.75rem 1.2rem;
    }
    .footer-main {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-heading {
        display: block;
    }
}
