/* 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;
    position: relative;
}

.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: 2.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;
}

.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;
}

.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 Section */
.blog-section {
    padding: 60px 20px;
    background: #f5f5f5;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, 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.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.blog-card .blog-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.blog-card .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-card .blog-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-card .blog-meta {
    margin-bottom: 15px;
    padding-bottom: 12px;
    border-bottom: 2px solid #f0f0f0;
}

.blog-card .blog-date {
    display: inline-block;
    font-size: 13px;
    color: #1a237e;
    background: #e3f2fd;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 600;
}

.blog-card .blog-content h2 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-card .blog-content h2 a {
    color: #1a237e;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-card:hover .blog-content h2 a {
    color: #FFA500;
}

.blog-card .blog-content p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

.blog-card .read-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #1a237e;
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.blog-card .read-more:hover {
    background: #FFA500;
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(255, 165, 0, 0.4);
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.pagination .btn {
    min-width: 45px;
    height: 45px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.pagination .btn-outline {
    background: white;
    color: #1a237e;
    border: 2px solid #e0e0e0;
}

.pagination .btn-outline:hover {
    background: #1a237e;
    color: white;
    border-color: #1a237e;
    transform: translateY(-2px);
}

.pagination .btn-primary {
    background: #1a237e;
    color: white;
    border: none;
}

/* 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;
}

.sidebar-card {
    background-color: var(--bg-white);
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
}

.sidebar-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.sidebar-card p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.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;
}

.sidebar-contact,
.sidebar-services {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-contact li,
.sidebar-services li {
    padding: 0.5rem 0;
}

.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;
}

.sidebar-contact a:hover,
.sidebar-services a:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.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;
    color: var(--text-light);
}

.blog-date {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.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);
    line-height: 1.6;
}

.blog-detail-content strong {
    color: var(--text-dark);
    font-weight: 600;
}

.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.blog-sidebar .sidebar-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-sidebar .sidebar-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.blog-sidebar .sidebar-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 600;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--primary-color);
}

.blog-sidebar .sidebar-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.blog-sidebar .sidebar-card.highlight {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
}

.blog-sidebar .sidebar-card.highlight h3 {
    color: white;
    border-bottom-color: rgba(255, 255, 255, 0.3);
}

.blog-sidebar .sidebar-card.highlight p {
    color: rgba(255, 255, 255, 0.9);
}

.related-posts {
    list-style: none;
    padding: 0;
    margin: 0;
}

.related-posts li {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.related-posts li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.related-posts li a {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.related-posts li a:hover {
    color: var(--primary-color);
    padding-left: 0.5rem;
}

.post-date {
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.post-date::before {
    content: "ðŸ“…";
    font-size: 0.75rem;
}

.sidebar-card .btn {
    width: 100%;
    text-align: center;
    padding: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.sidebar-card .btn-primary {
    background: var(--primary-color);
    color: white;
}

.sidebar-card .btn-primary:hover {
    background: var(--secondary-color);
    transform: scale(1.05);
}

.sidebar-card .btn-secondary {
    background: white;
    color: var(--primary-color);
    border: 2px solid white;
}

.sidebar-card .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

/* Stats Section */
.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;
}

.stats-section .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);
}

.stat-box .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-box .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); }
}

/* Welcome Section */
.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;
}

/* FAQ Section */
.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;
}

.faq-item.active .faq-question {
    background: #f8f9fa;
}

/* Tabs Section */
.tabs-section {
    background: #ffffff;
    padding: 80px 20px;
}

.tabs-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.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-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-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);
}

.tab-feature-item .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-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;
}

.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;
}

/* Photos Section */
.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;
}

.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);
}

.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;
}

/* Fixed Contact Buttons */
.fixed-contact-buttons {
    position: fixed;
    z-index: 9999;
}

.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-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;
}

.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;
}

.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;
    animation: phonePulse 2s infinite;
}

.phone-btn:hover {
    background: #283593 !important;
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(26, 35, 126, 0.7) !important;
    animation: none;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Navbar Teklif Al Butonu */
.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;
}

/* Services Hero */
.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;
}

.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 {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* MenÃ¼ Border */
.nav-menu {
    border-top: 2px solid #1a237e;
    border-bottom: 2px solid #1a237e;
    padding: 10px 0;
}

/* Anasayfa Ä°konu */
.nav-menu li a i.fa-home {
    font-size: 24px;
    color: #1a237e;
    transition: all 0.3s ease;
}

.nav-menu li a:hover i.fa-home,
.nav-menu li a.active i.fa-home {
    color: #FFA500;
    transform: scale(1.2);
}

/* Dropdown Container */
.nav-menu .dropdown {
    position: relative;
}

.nav-menu .dropdown::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 5px;
    background: transparent;
    z-index: 9998;
}

.nav-menu .dropdown-toggle {
    cursor: pointer;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.nav-menu .dropdown-toggle::after {
    content: "â–¼";
    font-size: 10px;
    transition: transform 0.3s ease;
}

.nav-menu .dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
}

.nav-menu .dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 2px);
    left: 0;
    background: #ffffff;
    min-width: 300px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    border-radius: 12px;
    padding: 10px 0;
    z-index: 99999;
    border: 3px solid #1a237e;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.nav-menu .dropdown:hover .dropdown-menu {
    display: block;
}

.nav-menu .dropdown-menu::before {
    content: "";
    position: absolute;
    top: -10px;
    left: 30px;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #1a237e;
}

.nav-menu .dropdown-menu li {
    list-style: none;
    margin: 0;
    padding: 0;
    border-bottom: 2px solid #e8e8e8;
}

.nav-menu .dropdown-menu li:last-child {
    border-bottom: none;
}

.nav-menu .dropdown-menu li a {
    display: flex;
    align-items: center;
    padding: 15px 25px;
    color: #1a237e;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 15px;
    font-weight: 600;
    border-left: 4px solid transparent;
    position: relative;
}

.nav-menu .dropdown-menu li a:hover {
    background: linear-gradient(90deg, #FFA500 0%, rgba(255,165,0,0.1) 100%);
    color: #fff;
    border-left: 4px solid #1a237e;
    padding-left: 30px;
    transform: translateX(5px);
}

.nav-menu .dropdown-menu li a::before {
    content: "ðŸ“¦";
    margin-right: 10px;
    font-size: 18px;
}

.nav-menu .dropdown-menu li a::after {
    content: "â†’";
    position: absolute;
    right: 20px;
    opacity: 0;
    transition: all 0.3s ease;
    font-weight: bold;
    color: #fff;
}

.nav-menu .dropdown-menu li a:hover::after {
    opacity: 1;
    right: 15px;
}

/* Breadcrumb */
.breadcrumb-container {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 15px 0;
    border-bottom: 2px solid #1a237e;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.breadcrumb {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 5px;
}

.breadcrumb-item {
    display: inline-flex;
    align-items: center;
    color: #666;
    font-size: 15px;
    line-height: 1.4;
}

.breadcrumb-item a {
    color: #1a237e;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
    padding: 5px 8px;
    border-radius: 5px;
}

.breadcrumb-item a:hover {
    background: #1a237e;
    color: white;
    transform: translateX(3px);
}

.breadcrumb-item a i.fa-home {
    font-size: 16px;
    margin-right: 5px;
}

.breadcrumb-item.active {
    color: #1a237e;
    font-weight: 700;
    padding: 5px 8px;
    background: rgba(26, 35, 126, 0.1);
    border-radius: 5px;
}

.breadcrumb-separator {
    margin: 0 8px;
    color: #1a237e;
    font-weight: bold;
    font-size: 14px;
}

/* ============================================
   MOBÄ°L RESPONSIVE - SCROLL SORUNU TAM DÃœZELTÄ°LDÄ° âœ…
============================================ */
@media (max-width: 992px) {
    /* Hamburger Menu */
    .mobile-menu-toggle {
        display: flex !important;
    }
    
    /* MenÃ¼ - SCROLL SORUNLARI DÃœZELTÄ°LDÄ° */
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        text-align: center;
        padding: 15px 20px 80px 20px; /* Ãœst padding azaltÄ±ldÄ± 20px->15px */
        gap: 0; /* Flexbox gap kaldÄ±rÄ±ldÄ± */
        box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        z-index: 9999;
        border-top: 3px solid #1a237e;
        border-bottom: 3px solid #1a237e;
        max-height: calc(100vh - 80px);
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
    }
    
    /* Mobil menÃ¼ scrollbar stili */
    .nav-menu::-webkit-scrollbar {
        width: 5px;
    }
    
    .nav-menu::-webkit-scrollbar-track {
        background: #f1f1f1;
    }
    
    .nav-menu::-webkit-scrollbar-thumb {
        background: #1a237e;
        border-radius: 10px;
    }
    
    .nav-menu.active {
        display: flex !important;
    }
    
    .nav-menu li {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid #eee;
        padding: 8px 0; /* 5px'den 8px'e Ã§Ä±karÄ±ldÄ± - orta halli */
        margin: 0;
    }
    
    .nav-menu li:last-child {
        border-bottom: none;
    }
    
    /* MenÃ¼ linkleri arasÄ± boÅŸluk */
    .nav-menu li a {
        padding: 10px 15px; /* 8px'den 10px'e Ã§Ä±karÄ±ldÄ± */
        display: block;
    }
    
    /* Dropdown Mobilde - SCROLL SORUNU DÃœZELTÄ°LDÄ° */
    .nav-menu .dropdown-menu {
        position: static !important;
        box-shadow: none !important;
        border: none !important;
        border-left: 3px solid #1a237e !important;
        margin-left: 0 !important;
        margin-top: 10px !important;
        margin-bottom: 15px !important;
        min-width: auto !important;
        display: none;
    }
    
    /* Dropdown aÃ§Ä±k hali */
    .nav-menu .dropdown.active .dropdown-menu,
    .nav-menu .dropdown:hover .dropdown-menu {
        display: block !important;
    }
    
    .nav-menu .dropdown-menu::before {
        display: none !important;
    }
    
    .nav-menu .dropdown::after {
        display: none !important;
    }
    
    /* Teklif Al Butonu */
    .btn-teklif {
        display: block !important;
        text-align: center !important;
        margin-top: 10px !important;
    }
    
    /* Logo */
    .logo img {
        max-height: 40px !important;
    }
    
    /* Hero */
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    /* Grids */
    .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;
    }
    
    /* Stats */
    .stats-section {
        padding: 50px 15px;
    }
    
    .stats-section .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 15px;
    }
    
    .stat-box {
        padding: 30px 15px;
    }
    
    .stat-box .stat-number {
        font-size: 36px;
    }
    
    .stat-icon {
        font-size: 40px;
    }
    
    /* Blog */
    .blog-section {
        padding: 40px 15px;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .blog-card .blog-image {
        height: 200px;
    }
    
    .blog-card .blog-content {
        padding: 20px;
    }
    
    .blog-card .blog-content h2 {
        font-size: 20px;
    }
    
    .blog-card .blog-content p {
        font-size: 14px;
    }
    
    .blog-card .read-more {
        width: 100%;
    }
    
    .pagination .btn {
        min-width: 40px;
        height: 40px;
        font-size: 14px;
    }
    
    /* Welcome */
    .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;
    }
    
    /* FAQ */
    .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;
    }
    
    /* Tabs */
    .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;
    }
    
    /* Photos */
    .photos-section {
        padding: 50px 15px;
    }
    
    .photos-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .photo-item {
        height: 300px;
    }
    
    /* Services */
    .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%;
    }
    
    /* Breadcrumb */
    .breadcrumb-container {
        padding: 10px 0;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
    }
    
    .breadcrumb-container::-webkit-scrollbar {
        height: 3px;
    }
    
    .breadcrumb-container::-webkit-scrollbar-track {
        background: #f1f1f1;
    }
    
    .breadcrumb-container::-webkit-scrollbar-thumb {
        background: #1a237e;
        border-radius: 10px;
    }
    
    .breadcrumb {
        flex-wrap: nowrap;
        font-size: 12px;
        white-space: nowrap;
        min-width: min-content;
    }
    
    .breadcrumb-item {
        font-size: 12px;
        flex-shrink: 0;
    }
    
    .breadcrumb-item a {
        padding: 4px 6px;
        font-size: 12px;
    }
    
    .breadcrumb-item a i.fa-home {
        font-size: 14px;
        margin-right: 3px;
    }
    
    .breadcrumb-item.active {
        padding: 4px 6px;
        font-size: 12px;
        max-width: 150px;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .breadcrumb-separator {
        margin: 0 5px;
        font-size: 12px;
    }
    
    /* Contact Buttons */
    .mobile-contact-buttons {
        display: flex !important;
    }
    
    .desktop-quote-btn {
        display: none !important;
    }
    
    body {
        padding-bottom: 80px;
    }
}

/* MasaÃ¼stÃ¼ */
@media (min-width: 993px) {
    .mobile-menu-toggle {
        display: none !important;
    }
    
    .mobile-contact-buttons {
        display: none !important;
    }
    
    .desktop-quote-btn {
        display: block !important;
    }
}

/* Ekstra KÃ¼Ã§Ã¼k Ekranlar */
@media (max-width: 360px) {
    .breadcrumb-container {
        padding: 8px 0;
    }
    
    .breadcrumb {
        font-size: 11px;
    }
    
    .breadcrumb-item {
        font-size: 11px;
    }
    
    .breadcrumb-item a,
    .breadcrumb-item.active {
        padding: 3px 5px;
        font-size: 11px;
    }
    
    .breadcrumb-item.active {
        max-width: 120px;
    }
    
    .breadcrumb-separator {
        margin: 0 3px;
        font-size: 10px;
    }
}

/* Tablet */
@media (min-width: 769px) and (max-width: 1024px) {
    .breadcrumb-item {
        font-size: 14px;
    }
    
    .breadcrumb-item a {
        padding: 5px 7px;
    }
}

.phone-btn span {
    display: none;
}

.phone-btn svg {
    width: 32px !important;
    height: 32px !important;
}

@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 {
    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;
    animation: pulse 2s infinite;
}

.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);
}

/* Hizmet Detay - Resim Bölümü */
.service-detail .service-image {
    max-width: 900px !important;
    margin: 30px auto 60px auto !important;
    text-align: center !important;
    overflow: hidden !important;
    border-radius: 12px !important;
}




