/* style.css - Temel Stiller */
:root {
    --primary-blue: #1a365d;
    --secondary-blue: #2d4a8a;
    --accent-orange: #f97316;
    --accent-yellow: #fbbf24;
    --light-gray: #f8fafc;
    --medium-gray: #e2e8f0;
    --dark-gray: #475569;
    --text-dark: #1e293b;
    --text-light: #64748b;
    --white: #ffffff;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 80px; /* Header için boşluk */
}

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

section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    width: 70%;
    height: 4px;
    background-color: var(--accent-orange);
    bottom: -10px;
    left: 15%;
}

.section-title p {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

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

.btn-primary:hover {
    background-color: #ea580c;
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

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

.btn-secondary:hover {
    background-color: #0f284c;
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.btn-whatsapp {
    background-color: #25D366;
    color: white;
}

.btn-whatsapp:hover {
    background-color: #128C7E;
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

/* Breadcrumb */
.breadcrumb {
    background-color: var(--light-gray);
    padding: 15px 0;
    margin-bottom: 40px;
}

.breadcrumb-content {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
}

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

.breadcrumb a:hover {
    color: var(--accent-orange);
}

/* Page Hero */
.page-hero {
    background: linear-gradient(rgba(26, 54, 93, 0.85), rgba(26, 54, 93, 0.9)), url('https://images.unsplash.com/photo-1593941707882-a5bba5331f7e?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-hero p {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto 30px;
    opacity: 0.9;
}
/* Hizmetler Sayfası için Ek Stiller */

/* Service Header */
.service-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.service-icon {
    width: 80px;
    height: 80px;
    background-color: var(--accent-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

/* Advantages Grid */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.advantage-item {
    text-align: center;
    padding: 20px;
    background-color: var(--light-gray);
    border-radius: 10px;
}

.advantage-item i {
    font-size: 2rem;
    color: var(--accent-orange);
    margin-bottom: 15px;
}

/* Service CTA */
.service-cta {
    display: flex;
    gap: 15px;
    margin-top: 40px;
    flex-wrap: wrap;
}

/* Service Areas */
.service-areas {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.area-card {
    background-color: var(--light-gray);
    padding: 20px;
    border-radius: 10px;
}

.area-card h4 {
    color: var(--primary-blue);
    margin-bottom: 15px;
}

/* Crane Types */
.crane-types {
    display: flex;
    gap: 20px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.crane-type {
    flex: 1;
    min-width: 200px;
    padding: 20px;
    background-color: var(--light-gray);
    border-radius: 10px;
}

/* Equipment Grid */
.equipment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.equipment-item {
    text-align: center;
    padding: 15px;
    background-color: var(--light-gray);
    border-radius: 10px;
}

.equipment-item i {
    font-size: 2rem;
    color: var(--accent-orange);
    margin-bottom: 10px;
}

/* Routes Grid */
.routes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.route-item {
    padding: 15px;
    background-color: var(--light-gray);
    border-radius: 10px;
}

/* Comparison Table */
.comparison-table {
    overflow-x: auto;
    margin-top: 40px;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.comparison-table th,
.comparison-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid var(--medium-gray);
}

.comparison-table th {
    background-color: var(--primary-blue);
    color: white;
    font-weight: 600;
}

.comparison-table tr:hover {
    background-color: var(--light-gray);
}

.comparison-table a {
    color: var(--accent-orange);
    font-weight: 600;
}

/* Emergency Steps */
.emergency-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.step {
    text-align: center;
    padding: 30px;
    background-color: white;
    border-radius: 10px;
    box-shadow: var(--shadow);
    position: relative;
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background-color: var(--accent-orange);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Features List */
.features-list {
    margin: 20px 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.feature-item i {
    color: var(--accent-orange);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: white;
    padding: 80px 0;
    text-align: center;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

/* Text Center Utility */
.text-center {
    text-align: center;
}

/* Service Detail Spacing */
.service-detail {
    margin-bottom: 80px;
    padding-bottom: 40px;
    border-bottom: 2px solid var(--light-gray);
}

.service-detail:last-child {
    border-bottom: none;
    margin-bottom: 40px;
}

/* Responsive Adjustments for Services */
@media (max-width: 768px) {
    .service-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .service-cta {
        flex-direction: column;
    }
    
    .service-cta .btn {
        width: 100%;
        text-align: center;
    }
    
    .crane-types,
    .routes-grid {
        grid-template-columns: 1fr;
    }
    
    .emergency-steps {
        grid-template-columns: 1fr;
    }
    
    .comparison-table table {
        font-size: 0.9rem;
    }
}
/* Seçenek 1 ve 2 için */
.logo-image {
    height: 40px; /* İhtiyacınıza göre ayarlayın */
    width: auto;
    max-width: 100%;
    vertical-align: middle;
}

/* Responsive tasarım için */
@media (max-width: 768px) {
    .logo-image {
        height: 35px; /* Mobilde daha küçük olabilir */
    }
    
    /* Mobilde sadece logo gösterip metni gizlemek isterseniz */
    .logo-text {
        display: none;
    }
}