/* Genel Stiller */
:root {
    --primary-color: #FF6B00;
    --primary-hover: #FF8C00;
    --secondary-color: #007bff;
    --secondary-hover: #00bcd4;
    --text-color: #333;
    --light-bg: #f8f9fa;
    --border-radius: 8px;
    --box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    --light-gray: #f8f9fa;
    --dark-gray: #343a40;
    --white: #ffffff;
    --transition: all 0.3s ease;
}

/* Responsive Breakpoints */
:root {
    --mobile: 576px;
    --tablet: 768px;
    --desktop: 992px;
    --large-desktop: 1200px;
}

/* Genel Responsive Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 56px;
    padding-right: 0;
}

@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background: #E8F0FE;
}

/* Top Bar Styles */
.top-bar {
    background: var(--light-bg);
    padding: 0.5rem 0;
    font-size: 0.9rem;
}

.top-bar a {
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

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

.contact-info i {
    color: var(--text-color);
}

.social-links a {
    margin-left: 1rem;
    font-size: 1.1rem;
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

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

/* Header Styles */
.site-header {
    background: white;
    box-shadow: var(--box-shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    margin-bottom: 40px;
}

.navbar {
    padding: 1rem 0;
}

.navbar-brand img {
    height: 50px;
    margin-right: 0;
}

.navbar-nav {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-left: 16px;
}

.nav-link {
    color: var(--text-color);
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
}

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

.header-buttons {
    margin-left: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.header-buttons .btn {
    margin-left: 0;
}

.btn-outline-primary {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

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

.btn-teklif,
.btn-nav {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: var(--border-radius);
    font-weight: bold;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-teklif:hover,
.btn-nav:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    color: white;
}

/* Dropdown Styles */
.dropdown-menu {
    border: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    padding: 1rem 0;
    border-radius: 8px;
    min-width: 250px;
    max-height: 400px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--secondary-color) var(--light-gray);
}

.dropdown-menu::-webkit-scrollbar {
    width: 6px;
}

.dropdown-menu::-webkit-scrollbar-track {
    background: var(--light-gray);
    border-radius: 10px;
}

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

.dropdown-item {
    padding: 0.75rem 1.5rem;
    color: var(--text-color);
    font-weight: 500;
    transition: var(--transition);
    white-space: nowrap;
    position: relative;
}

.dropdown-item:hover {
    background-color: var(--light-gray);
    color: var(--secondary-color);
    padding-left: 2rem;
}

.dropdown-toggle::after {
    margin-left: 0.5rem;
    vertical-align: middle;
}

/* Mobile Dropdown */
@media (max-width: 991px) {
    .dropdown-menu {
        max-height: none;
        overflow-y: visible;
        border: none;
        box-shadow: none;
        padding: 0;
        background: transparent;
    }
    
    .dropdown-item {
        padding: 0.5rem 1rem;
        color: var(--text-color);
    }
    
    .dropdown-item:hover {
        background-color: transparent;
        padding-left: 1.5rem;
    }
}

/* Responsive Styles */
@media (max-width: 991px) {
    .navbar-nav {
        margin-left: 0;
        gap: 8px;
    }
    .header-buttons {
        margin-left: 0;
        gap: 4px;
    }
}

@media (max-width: 767px) {
    .top-bar {
        text-align: center;
    }
    
    .contact-info {
        margin-bottom: 10px;
    }
    
    .social-links {
        text-align: center;
    }
    
    .social-links a {
        margin: 0 8px;
    }
}

/* Ana Sayfa Hero Bölümü */
.hero-section {
    position: relative;
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-hover));
    overflow: hidden;
    padding: 4rem 0;
    color: white;
    margin-bottom: 3rem;
    border-radius: 0 0 20px 20px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/routes/pattern.png');
    opacity: 0.1;
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

.hero-section h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero-section p {
    font-size: 1.25rem;
    opacity: 0.9;
}

/* Services Section */
.services-section {
    background-color: var(--light-gray);
    padding: 80px 0;
}

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

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

.section-header .lead {
    color: #6c757d;
    font-size: 1.25rem;
}

.service-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.service-icon {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.service-image {
    position: relative;
    width: 100%;
    padding-top: 66.67%;
    overflow: hidden;
    background-color: var(--light-gray);
}

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

.service-content {
    padding: 2rem;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: #fff;
}

.service-content h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-content p {
    color: #6c757d;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-content .btn {
    margin-top: auto;
    align-self: center;
}

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

@media (max-width: 991px) {
    .service-card {
        margin-bottom: 2rem;
    }
    
    .service-content {
        padding: 1.5rem;
    }
}

/* Öne Çıkan Özellikler */
.feature-box {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    text-align: center;
    height: 100%;
}

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

.feature-box i {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.feature-box h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Popüler Güzergahlar */
.route-card {
    display: block;
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    margin-bottom: 30px;
    text-decoration: none;
    color: var(--text-color);
}

.route-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    color: var(--text-color);
}

.route-image {
    position: relative;
    width: 100%;
    padding-top: 75%; /* 4:3 aspect ratio */
    overflow: hidden;
    background-color: #f8f9fa;
}

.route-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.route-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.1);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.route-card:hover .route-image::before {
    opacity: 1;
}

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

.route-content {
    padding: 1.5rem;
    text-align: center;
}

.route-content h3 {
    margin: 0 0 0.5rem;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
}

.route-content p {
    margin: 0;
    color: #666;
}

/* Neden Biz */
.why-us-section {
    background: var(--primary-color);
    color: #fff;
    padding: 80px 0;
}

.why-us-card {
    text-align: center;
    padding: 2rem;
    border-radius: 15px;
    background: rgba(255,255,255,0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.why-us-card:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-5px);
}

.why-us-card i {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.why-us-card h4 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

/* Form Stilleri */
.form-control {
    border: 1px solid #e0e0e0;
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    font-size: 1rem;
    background-color: #fff;
    transition: all 0.3s ease;
    height: auto;
    color: var(--text-color);
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(44, 62, 80, 0.15);
    outline: none;
}

.form-control::placeholder {
    color: #6c757d;
    opacity: 0.8;
}

.form-select {
    border: 1px solid #e0e0e0;
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    font-size: 1rem;
    background-color: #fff;
    transition: all 0.3s ease;
    height: auto;
    cursor: pointer;
}

.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(44, 62, 80, 0.15);
    outline: none;
}

.form-label {
    font-weight: 500;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.contact-section {
    background-color: #fff;
    padding: 80px 0;
}

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

.contact-section .lead {
    color: #6c757d;
    margin-bottom: 2rem;
}

.contact-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

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

/* Form Button Styles */
.btn-teklif i {
    font-size: 1.1rem;
}

/* Modal Form Styles */
.modal-content {
    border: none;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.modal-header {
    border-bottom: 1px solid #eee;
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 12px 12px 0 0;
}

.modal-title {
    color: var(--primary-color);
    font-weight: 600;
}

.modal-body {
    padding: 1.5rem;
}

.modal-body .form-group {
    margin-bottom: 1.25rem;
}

.btn-close {
    opacity: 0.5;
    transition: all 0.3s ease;
}

.btn-close:hover {
    opacity: 1;
}

/* Form Validation Styles */
.was-validated .form-control:invalid,
.form-control.is-invalid {
    border-color: #dc3545;
    background-image: none;
}

.was-validated .form-control:valid,
.form-control.is-valid {
    border-color: #28a745;
    background-image: none;
}

.invalid-feedback {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

/* Footer Stili */
.site-footer {
    background: var(--primary-color);
    color: #fff;
    padding: 60px 0 30px;
}

.site-footer h5 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.site-footer a {
    color: #fff;
    opacity: 0.8;
}

.site-footer a:hover {
    color: var(--secondary-color);
    opacity: 1;
    text-decoration: none;
}

.social-links a {
    width: 35px;
    height: 35px;
    background: rgba(255,255,255,0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 10px;
    color: #fff;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

/* WhatsApp Button */
.whatsapp-button {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 1000;
    text-decoration: none;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    color: white;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

@media (max-width: 768px) {
    .whatsapp-button {
        left: 20px;
        bottom: 20px;
        width: 50px;
        height: 50px;
        font-size: 25px;
    }
}

/* Responsive Ayarlar */
@media (max-width: 991.98px) {
    .hero-section {
        padding: 60px 0;
        text-align: center;
    }

    .hero-section h1 {
        font-size: 2.5rem;
    }

    .navbar-collapse {
        background: #fff;
        padding: 1rem;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        margin-top: 1rem;
    }
}

@media (max-width: 767.98px) {
    .hero-section h1 {
        font-size: 2rem;
    }

    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin: 0.5rem 0;
    }

    .service-card,
    .feature-box,
    .route-card {
        margin-bottom: 1.5rem;
    }
}

/* Service Pages Styles */
.service-detail-page {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.service-detail-page h1 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-weight: 700;
}

.service-image {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 2rem;
}

.service-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 16/9;
}

.service-content h2 {
    color: var(--primary-color);
    margin: 2rem 0 1rem;
    font-weight: 600;
}

.service-content p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-content ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 2rem;
}

.service-content ul li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    color: #666;
}

.service-content ul li i {
    position: absolute;
    left: 0;
    top: 4px;
    color: var(--primary-color);
}

.feature-card {
    background: #fff;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

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

.feature-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

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

.feature-card p {
    color: #666;
    margin-bottom: 0;
}

.sidebar-contact {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.sidebar-contact h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.sidebar-contact .form-control {
    border: 1px solid #ddd;
    padding: 0.75rem;
    margin-bottom: 1rem;
}

.sidebar-contact .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(var(--primary-rgb), 0.25);
}

.sidebar-contact .btn-primary {
    width: 100%;
    padding: 0.75rem;
    font-weight: 600;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .service-detail-page {
        padding: 40px 0;
    }
    
    .sidebar-contact {
        margin-top: 2rem;
    }
}

@media (max-width: 767px) {
    .service-detail-page h1 {
        font-size: 2rem;
    }
    
    .feature-card {
        padding: 1rem;
    }
}

/* Liste Stilleri */
.liste-baslik {
    font-size: 1.5rem;
    font-weight: bold;
    margin: 2rem 0 1rem;
    color: var(--text-color);
    text-align: center;
}

.liste {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
    margin: 0 auto;
    max-width: 1200px;
}

.liste li {
    background: var(--light-bg);
    padding: 1rem;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
    text-align: center;
}

.liste li:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.liste a {
    color: var(--text-color);
    text-decoration: none;
    display: block;
    font-weight: 500;
}

/* Hizmet Listesi */
.hizmet-listesi {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem auto;
    max-width: 1200px;
}

.hizmet-item {
    background: var(--light-bg);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
    text-align: center;
}

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

.hizmet-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.hizmet-baslik {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.hizmet-aciklama {
    color: #666;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

/* Buton Grupları */
.btn-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

/* Responsive Düzenlemeler */
@media (max-width: 768px) {
    .liste {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }
    
    .hizmet-listesi {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }
    
    .hero-section {
        padding: 3rem 0;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .navbar-brand img {
        height: 40px;
    }
    
    .btn-group {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-nav {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}

/* Container Ayarları */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Footer Stilleri */
.site-footer {
    background: var(--light-bg);
    padding: 2rem 0;
    margin-top: 3rem;
}

/* Top Bar */
.top-bar {
    background: var(--light-bg);
    padding: 0.5rem 0;
    font-size: 0.9rem;
}

.contact-info a,
.social-links a {
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-info a:hover,
.social-links a:hover {
    color: var(--primary-color);
}

.social-links a {
    margin-left: 1rem;
    font-size: 1.1rem;
}

.service-icons .icon-box {
    padding: 20px;
    border-radius: 10px;
    background-color: #f8f9fa;
    transition: all 0.3s ease;
    min-width: 200px;
}

.service-icons .icon-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    background-color: #fff;
}

.service-icons .icon-box i {
    color: #0d6efd;
    margin-bottom: 10px;
}

.service-icons .icon-box p {
    font-size: 1.1rem;
    font-weight: 500;
    color: #333;
}

/* Responsive Typography */
html {
    font-size: 16px;
}

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    html {
        font-size: 13px;
    }
}

/* Responsive Images */
img {
    max-width: 100%;
    height: auto;
}

/* Responsive Grid System */
.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.col {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}

@media (min-width: 576px) {
    .col-sm {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

@media (min-width: 768px) {
    .col-md {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

@media (min-width: 992px) {
    .col-lg {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* Responsive Spacing */
.section-padding {
    padding: 4rem 0;
}

@media (max-width: 768px) {
    .section-padding {
        padding: 3rem 0;
    }
}

@media (max-width: 576px) {
    .section-padding {
        padding: 2rem 0;
    }
}

/* Responsive Margins */
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 3rem; }

@media (max-width: 768px) {
    .mb-5 { margin-bottom: 2rem; }
}

/* Responsive Utilities */
.d-none {
    display: none !important;
}

.d-block {
    display: block !important;
}

@media (min-width: 576px) {
    .d-sm-none {
        display: none !important;
    }
    .d-sm-block {
        display: block !important;
    }
}

@media (min-width: 768px) {
    .d-md-none {
        display: none !important;
    }
    .d-md-block {
        display: block !important;
    }
}

@media (min-width: 992px) {
    .d-lg-none {
        display: none !important;
    }
    .d-lg-block {
        display: block !important;
    }
}

/* Responsive Flexbox */
.d-flex {
    display: flex !important;
}

.flex-column {
    flex-direction: column !important;
}

.flex-wrap {
    flex-wrap: wrap !important;
}

.justify-content-center {
    justify-content: center !important;
}

.align-items-center {
    align-items: center !important;
}

@media (max-width: 768px) {
    .flex-column-mobile {
        flex-direction: column !important;
    }
}

/* Responsive Text Alignment */
.text-center {
    text-align: center !important;
}

.text-left {
    text-align: left !important;
}

.text-right {
    text-align: right !important;
}

@media (max-width: 768px) {
    .text-center-mobile {
        text-align: center !important;
    }
}

.site-header + .container {
    padding-top: 60px;
}

/* Kombinasyon sayfalarına anasayfa gibi hero-section görünümü ekle */
.kombinasyon-hero {
    position: relative;
    background: linear-gradient(135deg, #E8F0FE 0%, #D2E3FC 100%);
    overflow: hidden;
    padding: 80px 0 40px 0;
    color: #1a73e8;
    margin-bottom: 3rem;
    border-radius: 0 0 20px 20px;
}
.kombinasyon-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a73e8;
}
.kombinasyon-hero p {
    font-size: 1.25rem;
    opacity: 0.9;
    color: #5f6368;
}
@media (max-width: 767px) {
    .kombinasyon-hero {
        padding: 40px 0 20px 0;
    }
    .kombinasyon-hero h1 {
        font-size: 2rem;
    }
} 