/* ==========================================
   SAYFA ÖZELLEŞTİRMELERİ
   Kullanım: Tüm alt sayfalar için özel stiller
   ========================================== */

/* Page Header */
.page-header {
    position: relative;
    height: 500px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

/* .page-header::before kaldırıldı - background image görünsün diye */

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.3);
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.8);
    font-weight: 700;
}

.page-header p {
    color: var(--white);
    font-size: 1.2rem;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.8);
    line-height: 1.6;
}

.page-header h1 {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: fadeInDown 1s ease;
}

.page-header p {
    color: var(--white);
    font-size: 1.2rem;
    animation: fadeInUp 1s ease;
}

/* ==========================================
   SERVICES DETAIL PAGE
   ========================================== */
.services-detail {
    padding: 5rem 0;
    background: var(--light-color);
}

.services-detail-page {
    padding: 2rem 0;
    background: white;
}

.services-detail-page-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.service-detail-card {
    background: #f8f9fa;
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.service-detail-card-content {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
}

.service-detail-card-icon {
    font-size: 3rem;
    color: #0066cc;
    flex-shrink: 0;
}

.service-detail-card-text {
    flex: 1;
}

.service-detail-card-title {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.service-detail-card-description {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.service-features-wrapper {
    margin-top: 1.5rem;
}

.service-features-title {
    color: #0066cc;
    margin-bottom: 1rem;
}

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

.service-feature-item {
    padding: 0.5rem 0;
    color: #555;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.service-feature-icon {
    color: #00cc66;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.service-detail-card-button {
    margin-top: 1.5rem;
    display: inline-block;
}

.service-detail-item {
    background: var(--white);
    border-radius: 15px;
    padding: 3rem;
    margin-bottom: 3rem;
    box-shadow: 0 5px 30px rgba(0,0,0,0.1);
    transition: var(--transition);
}

.service-detail-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.service-detail-content {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 3rem;
    align-items: start;
}

.service-detail-content.reverse {
    grid-template-columns: 1fr 150px;
}

.service-detail-content.reverse .service-detail-icon {
    order: 2;
}

.service-detail-content.reverse .service-detail-text {
    order: 1;
}

.service-detail-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #2c5f8d 100%);
    border-radius: 15px;
    font-size: 4rem;
    color: var(--white);
    box-shadow: 0 10px 30px rgba(26, 77, 125, 0.3);
}

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

.service-detail-text p {
    color: var(--text-color);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

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

.service-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--light-color);
    border-radius: 8px;
    transition: var(--transition);
}

.service-features li:hover {
    background: #e0e7ee;
    transform: translateX(5px);
}

.service-features i {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

/* ==========================================
   CONTACT PAGE
   ========================================== */
.contact-section {
    padding: 5rem 0;
    background: var(--light-color);
}

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

.contact-form-wrapper,
.contact-info-wrapper {
    background: var(--white);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.1);
}

.contact-form-wrapper h2,
.contact-info-wrapper h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.contact-form-wrapper p {
    color: #666;
    margin-bottom: 2rem;
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: var(--transition);
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(26, 77, 125, 0.1);
}

.form-group textarea {
    resize: vertical;
}

.contact-form button {
    margin-top: 1rem;
}

/* Contact Info */
.contact-info-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--light-color);
}

.contact-info-item:last-of-type {
    border-bottom: none;
}

.contact-info-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #2c5f8d 100%);
    border-radius: 10px;
    color: var(--white);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-info-text h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.contact-info-text p {
    color: #666;
    line-height: 1.8;
}

/* Social Links */
.social-links {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--light-color);
}

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

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    transition: var(--transition);
    text-decoration: none;
}

.social-icons a:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

/* Map Section */
.map-section {
    background: var(--white);
}

.map-placeholder {
    height: 400px;
    background: var(--light-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #999;
}

.map-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
}

/* ==========================================
   APPROACH PAGE
   ========================================== */
.approach-content {
    padding: 5rem 0;
    background: var(--white);
}

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

.approach-card {
    background: var(--light-color);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    border: 3px solid transparent;
}

.approach-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.approach-card i {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.approach-card h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.approach-card p {
    color: var(--text-color);
    line-height: 1.8;
}

.approach-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.approach-intro h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.approach-intro p {
    font-size: 1.2rem;
    color: var(--text-color);
    line-height: 1.8;
}

/* ==========================================
   REFERENCES PAGE
   ========================================== */
.references-content {
    padding: 5rem 0;
    background: var(--white);
}

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

.reference-card {
    background: var(--light-color);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

.reference-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    background: var(--white);
}

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

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

.reference-card p {
    color: #666;
    font-size: 0.9rem;
}

/* ==========================================
   DOCUMENTS & POLICIES PAGE
   ========================================== */
.documents-content,
.policies-content {
    padding: 5rem 0;
    background: var(--white);
}

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

.document-card,
.policy-card {
    background: var(--light-color);
    padding: 2.5rem;
    border-radius: 15px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.document-card:hover,
.policy-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    background: var(--white);
}

.document-card i,
.policy-card i {
    font-size: 3rem;
    color: var(--primary-color);
}

.document-card h3,
.policy-card h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.document-card p,
.policy-card p {
    color: var(--text-color);
    line-height: 1.8;
    flex-grow: 1;
}

.document-card .btn,
.policy-card .btn {
    align-self: flex-start;
    padding: 0.8rem 2rem;
    font-size: 0.9rem;
}

.content-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

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

.content-intro p {
    font-size: 1.1rem;
    color: var(--text-color);
    line-height: 1.8;
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */
@media (max-width: 968px) {
    .service-detail-content,
    .service-detail-content.reverse {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-detail-content.reverse .service-detail-icon,
    .service-detail-content.reverse .service-detail-text {
        order: 0;
    }

    .service-detail-icon {
        margin: 0 auto;
    }

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

@media (max-width: 768px) {
    .page-header {
        height: 250px;
    }

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

    .page-header p {
        font-size: 1rem;
    }

    .service-detail-item {
        padding: 2rem;
    }

    .service-detail-icon {
        width: 100px;
        height: 100px;
        font-size: 3rem;
    }

    .service-detail-text h2 {
        font-size: 1.5rem;
    }

    .service-features {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper,
    .contact-info-wrapper {
        padding: 2rem;
    }

    .approach-intro h2,
    .content-intro h2 {
        font-size: 1.8rem;
    }

    .service-detail-card-content {
        flex-direction: column;
        text-align: center;
    }

    .service-detail-card-icon {
        margin: 0 auto;
    }

    .service-detail-card-title {
        font-size: 1.3rem;
    }

    .service-detail-card-description {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .service-detail-text h2 {
        font-size: 1.3rem;
    }

    .service-detail-text p {
        font-size: 1rem;
    }

    .contact-info-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .services-detail-page-title {
        font-size: 1.5rem;
    }

    .service-detail-card {
        padding: 1.5rem;
    }

    .service-detail-card-icon {
        font-size: 2.5rem;
    }

    .service-detail-card-title {
        font-size: 1.2rem;
    }

    .service-detail-card-description {
        font-size: 0.9rem;
    }
}

/* ==========================================
   MISSION VISION SECTION (APPROACH PAGE)
   ========================================== */
.mission-vision-title {
    color: white;
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2rem;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.mission-vision-item {
    text-align: center;
}

.mission-vision-icon {
    font-size: 5rem;
    color: white;
    margin-bottom: 1.5rem;
}

.mission-vision-heading {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.mission-vision-text {
    color: white;
    line-height: 1.8;
    font-size: 1rem;
}

/* ==========================================
   WHY US SECTION (SERVICES PAGE)
   ========================================== */
.why-us-section {
    padding: 3rem 0;
    background: #f8f9fa;
}

.why-us-title {
    text-align: center;
    margin-bottom: 2.5rem;
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
}

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

.why-us-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.why-us-card-content {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.why-us-icon {
    font-size: 2.5rem;
    color: #0066cc;
    flex-shrink: 0;
}

.why-us-text {
    flex: 1;
}

.why-us-card-title {
    color: #2c3e50;
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.why-us-card-description {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* ==========================================
   COMMITMENTS SECTION (POLICIES PAGE)
   ========================================== */
.commitments-section {
    background: var(--light-color, #f8f9fa);
    padding: 3rem;
    border-radius: 15px;
    margin-top: 4rem;
}

.commitments-title {
    color: var(--primary-color, #1a4d7d);
    text-align: center;
    margin-bottom: 2rem;
}

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

.commitment-item {
    text-align: center;
}

.commitment-icon {
    font-size: 3rem;
    color: var(--secondary-color, #ff6b35);
    margin-bottom: 1rem;
}

.commitment-heading {
    margin-bottom: 0.5rem;
    color: var(--primary-color, #1a4d7d);
}

.commitment-text {
    color: var(--text-color, #333);
    line-height: 1.6;
}

/* Responsive adjustments for new sections */
@media (max-width: 768px) {
    .mission-vision-title {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }

    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .mission-vision-icon {
        font-size: 4rem;
    }

    .mission-vision-heading {
        font-size: 1.3rem;
    }

    .why-us-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .why-us-grid {
        grid-template-columns: 1fr;
    }

    .why-us-card-content {
        flex-direction: column;
        text-align: center;
    }

    .why-us-icon {
        margin: 0 auto;
    }

    .commitments-section {
        padding: 2rem;
        margin-top: 3rem;
    }

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

@media (max-width: 480px) {
    .mission-vision-icon {
        font-size: 3rem;
    }

    .mission-vision-heading {
        font-size: 1.2rem;
    }

    .mission-vision-text {
        font-size: 0.9rem;
    }

    .why-us-title {
        font-size: 1.8rem;
    }

    .why-us-card {
        padding: 1.2rem;
    }

    .why-us-icon {
        font-size: 2rem;
    }

    .why-us-card-title {
        font-size: 1.1rem;
    }

    .why-us-card-description {
        font-size: 0.9rem;
    }

    .commitments-section {
        padding: 1.5rem;
    }

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

