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

:root {
    --primary-color: #2563eb;
    --secondary-color: #1e40af;
    --accent-color: #f59e0b;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --success-color: #10b981;
    --danger-color: #ef4444;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

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

/* Header ve Navbar */
.header {
    background-color: var(--bg-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--bg-white);
    box-shadow: var(--shadow-lg);
    border-radius: 0.5rem;
    padding: 0.5rem 0;
    min-width: 200px;
    list-style: none;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--text-dark);
    text-decoration: none;
    transition: background-color 0.3s;
}

.dropdown-menu a:hover {
    background-color: var(--bg-light);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
}

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

/* Butonlar */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    text-align: center;
}

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

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

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

.btn-secondary:hover {
    background-color: #d97706;
}

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

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

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

.btn-block {
    display: block;
    width: 100%;
}

/* Hero Section */
.hero {
    position: relative;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 6rem 0;
    text-align: center;
    overflow: hidden;
    z-index: 1; /* Arka planın üstüne yazılar çıkabilsin */
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://barajnakliyat.com/resimler/barajkargo.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    z-index: -1;
}


.hero-content {
    position: relative;
    z-index: 2; /* yazılar resmin üstünde gözüksün */
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

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


/* Features Section */
.features {
    padding: 4rem 0;
    background-color: var(--bg-light);
}

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

.feature-card {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s;
}

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

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

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

.feature-card p {
    color: var(--text-light);
}

/* Services Section */
.services {
    padding: 4rem 0;
}

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

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

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

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

.service-card {
    background-color: var(--bg-white);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s;
}

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

.service-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

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

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

.service-content {
    padding: 1.5rem;
}

.service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.service-content p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

/* Stats Section */
.stats {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
}

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

.stat-item {
    padding: 1rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.125rem;
    opacity: 0.9;
}

/* CTA Section */
.cta {
    padding: 4rem 0;
    background-color: var(--bg-light);
}

.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

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

.cta-content p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

/* Footer */
.footer {
    background-color: var(--text-dark);
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-col h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

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

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

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

.footer-col a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 1rem;
    font-size: 1.5rem;
}

.social-links a {
    transition: transform 0.3s;
}

.social-links a:hover {
    transform: scale(1.2);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.page-header p {
    font-size: 1.125rem;
    opacity: 0.9;
}

/* About Page */
.about-content {
    padding: 4rem 0;
}

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

.about-text h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.about-text h3 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    color: var(--text-dark);
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.check-list {
    list-style: none;
    margin: 1rem 0;
}

.check-list li {
    padding: 0.5rem 0;
    color: var(--text-light);
}

.about-image img {
    width: 100%;
    border-radius: 1rem;
    box-shadow: var(--shadow-lg);
}

/* Values Section */
.values {
    padding: 4rem 0;
    background-color: var(--bg-light);
}

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

.value-card {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: var(--shadow-md);
}

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

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

.value-card p {
    color: var(--text-light);
}

/* Team Section */
.team {
    padding: 4rem 0;
}

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

.team-member {
    text-align: center;
}

.member-image {
    width: 200px;
    height: 200px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

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

.team-member h3 {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
    color: var(--text-dark);
}

.team-member p {
    color: var(--text-light);
}

/* Gallery Page */
.gallery-section {
    padding: 4rem 0;
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.5rem 1.5rem;
    border: 2px solid var(--border-color);
    background-color: var(--bg-white);
    border-radius: 2rem;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 500;
}

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

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

.gallery-item {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    cursor: pointer;
    transition: transform 0.3s;
}

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

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    padding: 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.gallery-overlay p {
    font-size: 0.875rem;
    opacity: 0.9;
}
/* Blog Bölümü CSS - KISALTILMIŞ VERSİYON */
.blog-section {
    background: #f8f9fa;
    padding: 80px 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 42px;
    font-weight: bold;
    color: #1a237e;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #FFA500;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 18px;
    color: #666;
    margin-top: 20px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.blog-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.blog-image {
    position: relative;
    height: 180px; /* 240px'den 180px'e düşürdüm */
    overflow: hidden;
}

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

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

.blog-category {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #FFA500;
    color: white;
    padding: 6px 14px; /* 8px 16px'den küçülttüm */
    border-radius: 20px;
    font-size: 13px; /* 14px'den 13px'e */
    font-weight: 600;
    text-transform: uppercase;
}

.blog-content {
    padding: 20px; /* 30px'den 20px'e düşürdüm */
}

.blog-title {
    font-size: 20px; /* 22px'den 20px'e */
    font-weight: bold;
    color: #1a237e;
    margin-bottom: 12px; /* 15px'den 12px'e */
    line-height: 1.4;
    /* min-height kaldırdım */
}

.blog-description {
    font-size: 14px; /* 15px'den 14px'e */
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px; /* 20px'den 15px'e */
    /* min-height kaldırdım */
    display: -webkit-box;
    -webkit-line-clamp: 2; /* Sadece 2 satır göster */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px; /* 20px'den 15px'e */
    padding-top: 12px; /* 15px'den 12px'e */
    border-top: 1px solid #eee;
}

.blog-date,
.blog-read {
    font-size: 12px; /* 13px'den 12px'e */
    color: #999;
}

.blog-date::before {
    content: '📅 ';
    margin-right: 5px;
}

.blog-read::before {
    content: '⏱️ ';
    margin-right: 5px;
}

.blog-button {
    display: inline-block;
    background: #1a237e;
    color: white;
    padding: 10px 25px; /* 12px 30px'den küçülttüm */
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px; /* Ekledim */
    transition: all 0.3s ease;
    text-align: center;
}

.blog-button:hover {
    background: #FFA500;
    transform: translateX(5px);
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .blog-section {
        padding: 50px 15px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .blog-image {
        height: 160px; /* Mobilde daha da kısa */
    }
    
    .blog-content {
        padding: 18px;
    }
    
    .blog-title {
        font-size: 18px;
    }
    
    .blog-description {
        font-size: 13px;
    }
}
/* Contact Page */
.contact-section {
    padding: 4rem 0;
}

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

.contact-info-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.contact-card {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
}

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

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

.contact-card p {
    color: var(--text-light);
}

.contact-card a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.contact-form-wrapper {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
}

.contact-form-wrapper h2 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

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

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

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--border-color);
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: border-color 0.3s;
}

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

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

/* Map Section */
.map-section {
    padding: 4rem 0;
    background-color: var(--bg-light);
}

.map-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.map-container {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

/* Quote Form Page */
.quote-form-section {
    padding: 4rem 0;
}

.form-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
}

.form-info h2 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.info-list {
    list-style: none;
    margin-bottom: 2rem;
}

.info-list li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.info-icon {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    background-color: var(--success-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.info-list strong {
    display: block;
    margin-bottom: 0.25rem;
    color: var(--text-dark);
}

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

.contact-box {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
}

.contact-box h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.phone-number {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.phone-number a {
    color: white;
    text-decoration: none;
}

.form-container {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
}

/* Service Detail Page */
.service-detail {
    padding: 4rem 0;
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.service-main-image {
    width: 100%;
    border-radius: 1rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-lg);
}

.service-detail-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-detail-content h3 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    color: var(--text-dark);
}

.service-detail-content p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.feature-list,
.benefit-list {
    list-style: none;
    margin: 1rem 0;
}

.feature-list li,
.benefit-list li {
    padding: 0.5rem 0;
    color: var(--text-light);
}

.benefit-list strong {
    color: var(--text-dark);
}

.procedure-list {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.procedure-list li {
    padding: 0.5rem 0;
    color: var(--text-light);
}

.procedure-list strong {
    color: var(--text-dark);
}

.items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.item-box {
    background-color: var(--bg-light);
    padding: 1rem;
    border-radius: 0.5rem;
    text-align: center;
    font-weight: 600;
    color: var(--text-dark);
}

.service-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Kart stili */
.sidebar-card {
    background-color: var(--bg-white);
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
}

/* Başlık ve açıklama */
.sidebar-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.sidebar-card p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

/* Vurgulu kart */
.sidebar-card.highlight {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
}

.sidebar-card.highlight h3,
.sidebar-card.highlight p {
    color: white;
}

/* Listeler */
.sidebar-contact,
.sidebar-services {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-contact li,
.sidebar-services li {
    padding: 0.5rem 0;
}

/* Linkler */
.sidebar-contact a,
.sidebar-services a {
    display: block;
    padding: 0.6rem 1rem;
    border: 1px solid var(--primary-color);
    border-radius: 0.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

/* Hover efekti */
.sidebar-contact a:hover,
.sidebar-services a:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* Highlight içindeki linkler */
.sidebar-card.highlight .sidebar-contact a,
.sidebar-card.highlight .sidebar-services a {
    color: white;
    border-color: rgba(255, 255, 255, 0.4);
    background-color: rgba(255, 255, 255, 0.1);
}

.sidebar-card.highlight .sidebar-contact a:hover,
.sidebar-card.highlight .sidebar-services a:hover {
    background-color: white;
    color: var(--primary-color);
    transform: translateY(-2px);
}
/* Blog Detail Page */
.blog-detail {
    padding: 4rem 0;
}

.blog-detail-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.blog-detail-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
}

.blog-detail-image {
    width: 100%;
    border-radius: 1rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-lg);
}

.blog-detail-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.blog-detail-content h3 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    color: var(--text-dark);
}

.blog-detail-content h4 {
    font-size: 1.25rem;
    margin: 1.5rem 0 0.75rem;
    color: var(--text-dark);
}

.blog-detail-content p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.blog-detail-content ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.blog-detail-content ul li {
    padding: 0.5rem 0;
    color: var(--text-light);
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--bg-white);
        flex-direction: column;
        padding: 1rem;
        box-shadow: var(--shadow-lg);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .dropdown-menu {
        position: static;
        box-shadow: none;
        padding-left: 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .about-grid,
    .contact-wrapper,
    .service-detail-grid,
    .blog-detail-wrapper,
    .form-wrapper {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-info-cards {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
}

/* CSS Sayaç - Bunu style.css dosyana ekle veya <style> tagı içine koy */
/* CSS - Güncellenmiş Versiyon */
.stats-section {
    background: linear-gradient(135deg, #1a237e 0%, #283593 100%);
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><path d="M0 0L50 50L0 100" stroke="rgba(255,255,255,0.03)" fill="none"/></svg>');
    opacity: 0.3;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

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

.stat-box {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 40px 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.15);
}

.stat-box:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.stat-icon {
    font-size: 50px;
    margin-bottom: 15px;
    animation: bounce 2s infinite;
    filter: brightness(0) invert(1); /* İconları beyaz yapar */
}

.stat-number {
    font-size: 48px;
    font-weight: bold;
    color: #ffffff;
    margin: 15px 0;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.stat-label {
    font-size: 18px;
    color: #ffffff;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.95;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Mobil uyumluluk */
@media (max-width: 768px) {
    .stats-section {
        padding: 50px 15px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 15px;
    }
    
    .stat-box {
        padding: 30px 15px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .stat-icon {
        font-size: 40px;
    }
}

/* Blog Bölümü CSS */
.blog-section {
    background: #f8f9fa;
    padding: 80px 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 42px;
    font-weight: bold;
    color: #1a237e;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #FFA500;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 18px;
    color: #666;
    margin-top: 20px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.blog-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

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

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

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

.blog-category {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #FFA500;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
}

.blog-content {
    padding: 30px;
}

.blog-title {
    font-size: 22px;
    font-weight: bold;
    color: #1a237e;
    margin-bottom: 15px;
    line-height: 1.4;
    min-height: 60px;
}

.blog-description {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    min-height: 72px;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.blog-date,
.blog-read {
    font-size: 13px;
    color: #999;
}

.blog-date::before {
    content: '📅 ';
    margin-right: 5px;
}

.blog-read::before {
    content: '⏱️ ';
    margin-right: 5px;
}

.blog-button {
    display: inline-block;
    background: #1a237e;
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
}

.blog-button:hover {
    background: #FFA500;
    transform: translateX(5px);
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .blog-section {
        padding: 50px 15px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .blog-image {
        height: 200px;
    }
    
    .blog-content {
        padding: 20px;
    }
    
    .blog-title {
        font-size: 20px;
        min-height: auto;
    }
    
    .blog-description {
        min-height: auto;
    }
}
/* SSS Bölümü CSS */
.faq-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 20px;
}

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

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.12);
}

.faq-question {
    width: 100%;
    background: white;
    border: none;
    padding: 25px 30px;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    font-weight: 600;
    color: #1a237e;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question span:first-child {
    flex: 1;
    padding-right: 20px;
}

.faq-icon {
    width: 35px;
    height: 35px;
    background: #1a237e;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    background: #FFA500;
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: #f8f9fa;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 25px 30px;
}

.faq-answer p {
    margin: 0;
    color: #666;
    line-height: 1.8;
    font-size: 16px;
}

/* Animasyon için */
.faq-item.active .faq-question {
    background: #f8f9fa;
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .faq-section {
        padding: 50px 15px;
    }
    
    .faq-question {
        padding: 20px;
        font-size: 16px;
    }
    
    .faq-icon {
        width: 30px;
        height: 30px;
        font-size: 20px;
    }
    
    .faq-item.active .faq-answer {
        padding: 20px;
    }
    
    .faq-answer p {
        font-size: 15px;
    }
}
/* Karşılama Bölümü CSS */
.welcome-section {
    background: white;
    padding: 80px 20px;
    position: relative;
}

.welcome-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #1a237e 0%, #FFA500 100%);
}

.welcome-content {
    max-width: 1000px;
    margin: 0 auto;
}

.welcome-title {
    font-size: 42px;
    font-weight: bold;
    color: #1a237e;
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.3;
    position: relative;
    padding-bottom: 20px;
}

.welcome-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: #FFA500;
    border-radius: 2px;
}

.welcome-text {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
    border-left: 5px solid #1a237e;
    margin-bottom: 40px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}

.welcome-text p {
    font-size: 17px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
    text-align: justify;
}

.welcome-text p:last-child {
    margin-bottom: 0;
}

.welcome-text strong {
    color: #1a237e;
    font-weight: 700;
}

.welcome-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.feature-badge {
    background: linear-gradient(135deg, #1a237e 0%, #283593 100%);
    color: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(26, 35, 126, 0.2);
}

.feature-badge:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(26, 35, 126, 0.3);
    background: linear-gradient(135deg, #FFA500 0%, #FF8C00 100%);
}

.badge-icon {
    width: 30px;
    height: 30px;
    background: white;
    color: #1a237e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .welcome-section {
        padding: 50px 15px;
    }
    
    .welcome-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .welcome-text {
        padding: 25px;
    }
    
    .welcome-text p {
        font-size: 15px;
        text-align: left;
    }
    
    .welcome-features {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .feature-badge {
        padding: 15px;
        font-size: 14px;
    }
}

/* Tab Bölümü CSS */
.tabs-section {
    background: #ffffff;
    padding: 80px 20px;
}

.tabs-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

/* Tab Başlıkları */
.tab-headers {
    display: flex;
    gap: 0;
    margin-bottom: 0;
    border-bottom: 3px solid #e0e0e0;
}

.tab-header {
    flex: 1;
    background: #f8f9fa;
    border: none;
    padding: 25px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    position: relative;
}

.tab-header h2 {
    margin: 0;
    font-size: 20px;
    color: #666;
    font-weight: 600;
    transition: all 0.3s ease;
}

.tab-header:hover {
    background: #e9ecef;
}

.tab-header:hover h2 {
    color: #1a237e;
}

.tab-header.active {
    background: #1a237e;
}

.tab-header.active h2 {
    color: white;
}

.tab-header.active::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    right: 0;
    height: 3px;
    background: #FFA500;
}

/* Tab İçerikleri */
.tab-contents {
    position: relative;
}

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

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

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

.tab-inner {
    background: #f8f9fa;
    padding: 50px;
    border-radius: 0 0 15px 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.tab-inner h3 {
    font-size: 28px;
    color: #1a237e;
    margin-bottom: 20px;
    font-weight: bold;
}

.tab-inner p {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
}

.tab-inner strong {
    color: #1a237e;
    font-weight: 700;
}

/* Tab Özellikleri */
.tab-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.tab-feature-item {
    background: white;
    padding: 25px;
    border-radius: 10px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.tab-feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 40px;
    flex-shrink: 0;
}

.tab-feature-item h4 {
    font-size: 18px;
    color: #1a237e;
    margin-bottom: 5px;
}

.tab-feature-item p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

/* Tab Vurgu Kutusu */
.tab-highlight {
    background: white;
    padding: 30px;
    border-radius: 10px;
    border-left: 5px solid #FFA500;
    margin-top: 30px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

.tab-highlight h4 {
    font-size: 22px;
    color: #1a237e;
    margin-bottom: 20px;
}

.tab-highlight ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tab-highlight ul li {
    font-size: 16px;
    color: #333;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.tab-highlight ul li:last-child {
    border-bottom: none;
}

/* Süreç Adımları */
.process-steps {
    margin-top: 30px;
}

.process-step {
    display: flex;
    gap: 25px;
    margin-bottom: 30px;
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1a237e, #283593);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: bold;
    flex-shrink: 0;
    box-shadow: 0 3px 15px rgba(26, 35, 126, 0.3);
}

.step-content h4 {
    font-size: 20px;
    color: #1a237e;
    margin-bottom: 10px;
}

.step-content p {
    font-size: 15px;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .tabs-section {
        padding: 50px 15px;
    }
    
    .tab-headers {
        flex-direction: column;
        gap: 10px;
        border-bottom: none;
    }
    
    .tab-header {
        border-radius: 10px;
        padding: 20px;
    }
    
    .tab-header h2 {
        font-size: 18px;
    }
    
    .tab-header.active::after {
        display: none;
    }
    
    .tab-inner {
        padding: 30px 20px;
    }
    
    .tab-inner h3 {
        font-size: 22px;
    }
    
    .tab-features {
        grid-template-columns: 1fr;
    }
    
    .process-step {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}

/* Resim Bölümü - YENİ */
.photos-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 20px;
}

.photos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.photo-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    height: 350px;
}

.photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* OVERLAY - HER ZAMAN GÖRÜNÜR */
.photo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to top, 
        rgba(26, 35, 126, 0.95) 0%, 
        rgba(26, 35, 126, 0.75) 35%, 
        rgba(26, 35, 126, 0.5) 60%, 
        transparent 100%
    );
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
}

.photo-info {
    color: white;
}

.photo-info h3 {
    font-size: 26px;
    font-weight: bold;
    margin-bottom: 12px;
    color: #ffffff;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.9);
}

.photo-info p {
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 15px;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.9);
}

.photo-brand {
    color: #FFA500;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    padding-top: 12px;
    border-top: 3px solid #FFA500;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.9);
}

/* Lightbox */
.photo-lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.photo-lightbox.active {
    display: flex;
}

.photo-lightbox-image {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}

.photo-lightbox-close {
    position: absolute;
    top: 30px;
    right: 50px;
    font-size: 50px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 300;
    z-index: 10001;
}

.photo-lightbox-close:hover {
    color: #FFA500;
    transform: rotate(90deg);
}

.photo-lightbox-prev,
.photo-lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid white;
    font-size: 30px;
    padding: 15px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 5px;
    z-index: 10001;
}

.photo-lightbox-prev:hover,
.photo-lightbox-next:hover {
    background: #FFA500;
    border-color: #FFA500;
}

.photo-lightbox-prev {
    left: 50px;
}

.photo-lightbox-next {
    right: 50px;
}

@media (max-width: 768px) {
    .photos-section {
        padding: 50px 15px;
    }
    
    .photos-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .photo-item {
        height: 300px;
    }
}

/* Sabit İletişim Butonları - İÇE OYUK VERSİYON */
.fixed-contact-buttons {
    position: fixed;
    z-index: 9999;
}

/* Mobil Butonlar */
.mobile-contact-buttons {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.15);
    padding: 10px;
    gap: 0;
    align-items: flex-end;
    justify-content: center;
}

.contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 14px 20px;
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    position: relative;
}

.contact-btn svg {
    width: 20px;
    height: 20px;
}

/* WhatsApp Butonu - SOL (Sağ tarafı içe oyuk) */
.whatsapp-btn {
    flex: 1;
    background: #25D366;
    color: white;
    border-radius: 12px 0 0 12px;
    padding-right: 30px;
}

.whatsapp-btn::after {
    content: '';
    position: absolute;
    right: -35px;
    bottom: 0;
    width: 70px;
    height: 70px;
    background: white;
    border-radius: 50%;
}

.whatsapp-btn:hover {
    background: #20BA5A;
}

/* Teklif Al Butonu - SAĞ (Sol tarafı içe oyuk) */
.quote-btn {
    flex: 1;
    background: #FFA500;
    color: white;
    border-radius: 0 12px 12px 0;
    padding-left: 30px;
}

.quote-btn::before {
    content: '';
    position: absolute;
    left: -35px;
    bottom: 0;
    width: 70px;
    height: 70px;
    background: white;
    border-radius: 50%;
}

.quote-btn:hover {
    background: #FF8C00;
}

/* Telefon Butonu - ORTA (YUVARLAK) */
.phone-btn {
    width: 70px;
    height: 66px;
    border-radius: 50% !important;
    background: #1a237e !important;
    color: white;
    padding: 0 !important;
    flex: 0 0 70px;
    position: relative;
    bottom: 0px;
    box-shadow: 0 5px 25px rgba(26, 35, 126, 0.5) !important;
    z-index: 100;
    margin: 0 -35px;
}

.phone-btn:hover {
    background: #283593 !important;
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(26, 35, 126, 0.7) !important;
}

.phone-btn span {
    display: none;
}

.phone-btn svg {
    width: 32px !important;
    height: 32px !important;
}

/* Masaüstü Buton */
.desktop-quote-btn {
    display: none;
    position: fixed;
    left: 30px;
    bottom: 30px;
    background: linear-gradient(135deg, #1a237e 0%, #283593 100%);
    color: white;
    padding: 18px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0 8px 25px rgba(26, 35, 126, 0.4);
    transition: all 0.3s ease;
    z-index: 9999;
}

.desktop-quote-btn:hover {
    background: linear-gradient(135deg, #FFA500 0%, #FF8C00 100%);
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(255, 165, 0, 0.5);
}

/* Mobil */
@media (max-width: 768px) {
    .mobile-contact-buttons {
        display: flex !important;
    }
    
    .desktop-quote-btn {
        display: none !important;
    }
    
    body {
        padding-bottom: 80px;
    }
}

/* Masaüstü */
@media (min-width: 769px) {
    .mobile-contact-buttons {
        display: none !important;
    }
    
    .desktop-quote-btn {
        display: block !important;
    }
}

/* Animasyonlar */
.phone-btn {
    animation: phonePulse 2s infinite;
}

.phone-btn:hover {
    animation: none;
}

@keyframes phonePulse {
    0%, 100% {
        box-shadow: 0 5px 25px rgba(26, 35, 126, 0.5);
    }
    50% {
        box-shadow: 0 5px 35px rgba(26, 35, 126, 0.8);
    }
}

.desktop-quote-btn {
    animation: pulse 2s infinite;
}

.desktop-quote-btn:hover {
    animation: none;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}
/* Müşteri Görüşleri Bölümü */



/* Navbar Teklif Al Butonu - ÖZEL STİL */
.nav-menu .btn-teklif {
    background: linear-gradient(135deg, #FFA500 0%, #FF8C00 100%);
    color: white !important;
    padding: 12px 28px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 165, 0, 0.3);
    border: none;
    display: inline-block;
}

.nav-menu .btn-teklif:hover {
    background: linear-gradient(135deg, #FF8C00 0%, #FF7700 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 165, 0, 0.5);
    color: white !important;
}
/* Hizmetlerimiz Sayfası - Özel Stiller */
.services-hero {
    background: linear-gradient(135deg, #1a237e 0%, #283593 100%);
    position: relative;
    overflow: hidden;
}

.services-hero::before {
    content: '🚚';
    position: absolute;
    font-size: 300px;
    opacity: 0.05;
    right: -50px;
    top: -50px;
}

.services-main {
    padding: 80px 20px;
    background: white;
}

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

.service-card-big {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.service-card-big:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

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

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

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

.service-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #FFA500;
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(255, 165, 0, 0.4);
}

.service-badge.featured {
    background: #1a237e;
}

.service-badge.special {
    background: linear-gradient(135deg, #FF6B6B, #FF8E53);
}

.service-content-big {
    padding: 35px;
}

.service-icon-big {
    font-size: 50px;
    margin-bottom: 20px;
}

.service-content-big h3 {
    font-size: 26px;
    color: #1a237e;
    margin-bottom: 15px;
    font-weight: 700;
}

.service-content-big p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.service-features li {
    padding: 10px 0;
    color: #333;
    font-size: 15px;
    border-bottom: 1px solid #f0f0f0;
}

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

/* Diğer Hizmetler */
.other-services {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.services-grid-small {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card-small {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.service-card-small:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.service-icon-small {
    font-size: 60px;
    margin-bottom: 20px;
}

.service-card-small h4 {
    font-size: 20px;
    color: #1a237e;
    margin-bottom: 15px;
    font-weight: 700;
}

.service-card-small p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-link {
    display: inline-block;
    color: #FFA500;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.service-link:hover {
    color: #1a237e;
    transform: translateX(5px);
}

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

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .services-main {
        padding: 50px 15px;
    }
    
    .services-grid-large {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .service-image-big {
        height: 200px;
    }
    
    .service-content-big {
        padding: 25px;
    }
    
    .service-content-big h3 {
        font-size: 22px;
    }
    
    .other-services {
        padding: 50px 15px;
    }
    
    .services-grid-small {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
}

