@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #1a1a2e;
    overflow-x: hidden;
}

/* ========== LOADER ========== */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0f0c29;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s;
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid #f4a261;
    border-top: 3px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.loader-text {
    color: #f4a261;
    margin-top: 15px;
    font-weight: 500;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ========== CONTAINER ========== */
.container {
    width: 90%;
    max-width: 1280px;
    margin: auto;
    padding: 20px 0;
}

/* ========== NAVBAR ========== */
.navbar {
    background: rgba(15, 12, 41, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: #0f0c29;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-size: 1.5rem;
    font-weight: 800;
    text-decoration: none;
    background: linear-gradient(135deg, #f4a261, #e76f00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo span {
    font-weight: 600;
}

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

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #f4a261, #e76f00);
    transition: width 0.3s;
}

.nav-menu a:hover::after {
    width: 100%;
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    background: #0f0c29;
    list-style: none;
    top: 100%;
    left: 0;
    width: 200px;
    padding: 0.8rem 0;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

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

.dropdown-menu li {
    padding: 0.5rem 1.5rem;
}

.dropdown-menu a {
    color: white;
}

.dropdown-menu a::after {
    display: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
}

/* ========== SWIPER SLIDER ========== */
.hero-slider {
    width: 100%;
    height: 100vh;
    position: relative;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15,12,41,0.8), rgba(48,43,99,0.6));
}

.slide-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    top: 50%;
    transform: translateY(-50%);
    padding: 0 20px;
}

.slide-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 0 0 30px rgba(0,0,0,0.5);
}

.slide-subtitle {
    font-size: 1.2rem;
    opacity: 0.95;
}

.btn-slide {
    display: inline-block;
    padding: 12px 35px;
    background: linear-gradient(135deg, #f4a261, #e76f00);
    color: white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 1.5rem;
    transition: 0.3s;
}

.btn-slide:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(244,162,97,0.4);
}

.swiper-button-next,
.swiper-button-prev {
    color: #f4a261;
}

.swiper-pagination-bullet-active {
    background: #f4a261;
}

/* ========== FLOATING SOCIAL ========== */
.floating-social {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-fab {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.social-fab:hover {
    transform: scale(1.1);
}

.facebook { background: #3b5998; }
.twitter { background: #1da1f2; }
.linkedin { background: #0077b5; }
.instagram { background: #e4405f; }
.whatsapp { background: #25d366; }

/* ========== SECTION HEADER ========== */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, #f4a26120, #e76f0020);
    color: #f4a261;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.highlight {
    background: linear-gradient(135deg, #f4a261, #e76f00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-header p {
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* ========== SERVICES ========== */
.services-preview {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(244,162,97,0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #f4a26120, #e76f0020);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon i {
    font-size: 2.5rem;
    color: #f4a261;
}

.service-card h3 {
    margin-bottom: 15px;
    color: #0a2b3e;
}

.service-number {
    position: absolute;
    bottom: 10px;
    right: 20px;
    font-size: 3rem;
    font-weight: 800;
    color: rgba(244,162,97,0.1);
}

/* ========== STATS ========== */
.stats-section {
    background: linear-gradient(135deg, #0f0c29, #302b63);
    padding: 60px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.stats-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(244,162,97,0.1) 0%, transparent 50%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.stat-icon {
    font-size: 2.5rem;
    color: #f4a261;
    margin-bottom: 10px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #f4a261;
}

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

/* ========== NEWS & BLOG (LIST STYLE) ========== */
.news-section, .blog-section {
    padding: 80px 0;
}

.news-section {
    background: #f8f9fa;
}

.news-list, .blog-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.news-item, .blog-item {
    display: flex;
    gap: 20px;
    background: white;
    border-radius: 15px;
    padding: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.news-item:hover, .blog-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(244,162,97,0.15);
}

.news-image-small, .blog-image-small {
    width: 120px;
    height: 120px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
}

.news-image-small img, .blog-image-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-date-badge {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: #f4a261;
    color: white;
    padding: 4px 8px;
    border-radius: 8px;
    text-align: center;
    font-size: 0.7rem;
    font-weight: bold;
}

.blog-category {
    position: absolute;
    top: 8px;
    left: 8px;
    background: #f4a261;
    color: white;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: bold;
}

.news-content-small, .blog-content-small {
    flex: 1;
}

.news-content-small h3, .blog-content-small h3 {
    margin-bottom: 10px;
    color: #0a2b3e;
    font-size: 1.2rem;
}

.read-more-link {
    color: #f4a261;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
    display: inline-block;
    margin-top: 10px;
}

.read-more-link:hover {
    color: #e76f00;
    letter-spacing: 1px;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
    flex-wrap: wrap;
    gap: 10px;
}

.blog-meta span {
    font-size: 0.8rem;
    color: #888;
}

.section-footer {
    text-align: center;
    margin-top: 40px;
}

.btn-more {
    display: inline-block;
    padding: 10px 30px;
    background: transparent;
    border: 2px solid #f4a261;
    color: #f4a261;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.btn-more:hover {
    background: #f4a261;
    color: white;
}

/* ========== TEAM ========== */
.team-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.team-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

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

.team-card:hover {
    transform: translateY(-10px);
}

.team-image {
    position: relative;
    overflow: hidden;
    height: 300px;
}

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

.team-card:hover .team-image img {
    transform: scale(1.05);
}

.team-social {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    text-align: center;
    transition: 0.3s;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    padding: 20px 0 10px;
}

.team-card:hover .team-social {
    bottom: 0;
}

.team-social a {
    display: inline-block;
    width: 35px;
    height: 35px;
    background: #f4a261;
    color: white;
    border-radius: 50%;
    line-height: 35px;
    margin: 0 5px;
    transition: 0.3s;
}

.team-social a:hover {
    transform: scale(1.1);
    background: #e76f00;
}

.team-info {
    padding: 20px;
    text-align: center;
}

.team-info h3 {
    margin-bottom: 5px;
    color: #0a2b3e;
}

.team-info p {
    color: #f4a261;
    font-weight: 500;
    margin-bottom: 10px;
}

.team-contact {
    font-size: 0.9rem;
    color: #666;
}

/* ========== CTA SECTION ========== */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0f0c29, #302b63);
    position: relative;
    text-align: center;
    overflow: hidden;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(244,162,97,0.15), transparent);
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 15px;
}

.cta-content p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 30px;
}

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

.btn-cta {
    background: #f4a261;
    color: #0f0c29;
    padding: 12px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
    display: inline-block;
}

.btn-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(244,162,97,0.4);
}

.btn-cta-outline {
    background: transparent;
    border: 2px solid #f4a261;
    color: #f4a261;
    padding: 12px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
    display: inline-block;
}

.btn-cta-outline:hover {
    background: #f4a261;
    color: #0f0c29;
}

/* ========== FOOTER ========== */
.main-footer {
    background: #0a0a0a;
    color: #aaa;
    padding: 60px 0 20px;
}

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

.footer-col h3 {
    color: #f4a261;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-col h3 span {
    color: #f4a261;
}

.footer-col p {
    line-height: 1.8;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social a {
    display: inline-block;
    width: 38px;
    height: 38px;
    background: rgba(244,162,97,0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 38px;
    color: #f4a261;
    transition: 0.3s;
}

.footer-social a:hover {
    background: #f4a261;
    color: white;
    transform: translateY(-3px);
}

.footer-contact p {
    margin-bottom: 12px;
}

.footer-contact i {
    width: 30px;
    color: #f4a261;
}

.footer-contact a {
    color: #aaa;
    text-decoration: none;
    transition: 0.3s;
}

.footer-contact a:hover {
    color: #f4a261;
}

.working-hours p {
    margin-bottom: 8px;
}

.working-hours span {
    font-weight: 600;
    color: #ddd;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 8px;
    background: #1a1a1a;
    color: white;
}

.newsletter-form button {
    background: #f4a261;
    border: none;
    padding: 12px 18px;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
}

.newsletter-form button:hover {
    background: #e76f00;
}

.newsletter-note {
    font-size: 0.7rem;
    margin-top: 10px;
    opacity: 0.6;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #1a1a1a;
    font-size: 0.85rem;
}

.footer-bottom i {
    color: #f4a261;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 992px) {
    .slide-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: #0f0c29;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 20px 0;
        gap: 1rem;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .dropdown-menu {
        position: static;
        width: 100%;
        background: #1a1a3e;
        margin-top: 10px;
    }
    
    .slide-title {
        font-size: 2rem;
    }
    
    .slide-subtitle {
        font-size: 0.9rem;
    }
    
    .news-item, .blog-item {
        flex-direction: column;
    }
    
    .news-image-small, .blog-image-small {
        width: 100%;
        height: 180px;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .floating-social {
        right: 10px;
        bottom: 10px;
    }
    
    .social-fab {
        width: 35px;
        height: 35px;
        font-size: 0.8rem;
    }
    
    .footer-content {
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .service-grid {
        grid-template-columns: 1fr;
    }
}


/* hakkımızda sayfası başlangıç */
/* ========== PAGE HEADER ========== */
.page-header {
    padding: 150px 0 80px;
    background: linear-gradient(135deg, #0f0c29, #302b63);
    position: relative;
    text-align: center;
    color: white;
}

.page-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(244,162,97,0.15), transparent);
}

.page-header-content {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.page-breadcrumb {
    margin-top: 20px;
    font-size: 0.9rem;
}

.page-breadcrumb a {
    color: #f4a261;
    text-decoration: none;
}

.page-breadcrumb i {
    margin: 0 10px;
    font-size: 0.7rem;
}

/* ========== ABOUT SECTION ========== */
.about-section {
    padding: 80px 0;
}

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

.about-content h2 {
    font-size: 2rem;
    margin: 15px 0 20px;
}

.about-text {
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
}

.about-stats {
    display: flex;
    gap: 30px;
    margin-top: 20px;
}

.about-stat {
    text-align: center;
}

.about-stat .stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f4a261;
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.about-experience {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: #f4a261;
    color: white;
    padding: 15px 20px;
    border-radius: 15px;
    text-align: center;
}

.about-experience span {
    font-size: 2rem;
    font-weight: 800;
    display: block;
}

/* ========== MISSION VISION SECTION ========== */
.mission-vision-section {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.mv-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: 0.4s;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.mv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(244,162,97,0.15);
}

.mv-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #f4a26120, #e76f0020);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mv-icon i {
    font-size: 2.5rem;
    color: #f4a261;
}

.mv-card h3 {
    margin-bottom: 15px;
    color: #0a2b3e;
}

.mv-card p {
    color: #666;
    line-height: 1.7;
}

/* ========== VALUES SECTION ========== */
.values-section {
    padding: 80px 0;
}

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

.value-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: 0.4s;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(244,162,97,0.1);
}

.value-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #f4a261, #e76f00);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-icon i {
    font-size: 2rem;
    color: white;
}

.value-card h3 {
    margin-bottom: 10px;
    color: #0a2b3e;
}

/* ========== TIMELINE SECTION ========== */
.timeline-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 50px auto 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, #f4a261, #e76f00);
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
    display: flex;
    justify-content: flex-end;
    padding-right: 30px;
}

.timeline-item:nth-child(even) {
    justify-content: flex-start;
    padding-right: 0;
    padding-left: 30px;
}

.timeline-dot {
    position: absolute;
    right: -8px;
    top: 0;
    width: 16px;
    height: 16px;
    background: #f4a261;
    border-radius: 50%;
    box-shadow: 0 0 0 5px rgba(244,162,97,0.2);
}

.timeline-item:nth-child(even) .timeline-dot {
    right: auto;
    left: -8px;
}

.timeline-date {
    position: absolute;
    right: -100px;
    top: 0;
    font-weight: 700;
    color: #f4a261;
    font-size: 1.2rem;
}

.timeline-item:nth-child(even) .timeline-date {
    right: auto;
    left: -100px;
}

.timeline-content {
    background: white;
    padding: 20px;
    border-radius: 10px;
    width: 70%;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.timeline-content h3 {
    margin-bottom: 10px;
    color: #0a2b3e;
}

/* Responsive Timeline */
@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        justify-content: flex-start;
        padding-left: 50px;
        padding-right: 0;
    }
    
    .timeline-item:nth-child(even) {
        padding-left: 50px;
    }
    
    .timeline-dot {
        left: 12px !important;
        right: auto !important;
    }
    
    .timeline-date {
        position: relative;
        left: 0 !important;
        right: auto !important;
        margin-bottom: 10px;
        display: inline-block;
    }
    
    .timeline-content {
        width: 100%;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .about-stats {
        flex-wrap: wrap;
        justify-content: center;
    }
}
/* hakkımızda sayfası bitiş*/




/* HİZMETLER SAYFASI BAŞLANGIÇ */
/* ========== SERVICES DETAILED PAGE ========== */
.services-detailed {
    padding: 80px 0;
}

.services-header {
    text-align: center;
    margin-bottom: 50px;
}

.services-header h2 {
    font-size: 2.5rem;
    margin: 15px 0 10px;
}

.services-grid-detailed {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.service-detailed-card {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 30px;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: 0.4s;
}

.service-detailed-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(244,162,97,0.15);
}

.service-detailed-image {
    position: relative;
    overflow: hidden;
    min-height: 350px;
}

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

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

.service-detailed-icon {
    position: absolute;
    bottom: 20px;
    left: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f4a261, #e76f00);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.service-detailed-icon i {
    font-size: 1.8rem;
    color: white;
}

.service-detailed-content {
    padding: 30px 30px 30px 0;
}

.service-detailed-content h3 {
    font-size: 1.8rem;
    color: #0a2b3e;
    margin-bottom: 15px;
}

.service-short {
    font-size: 1.1rem;
    color: #f4a261;
    font-weight: 500;
    margin-bottom: 15px;
    border-left: 3px solid #f4a261;
    padding-left: 15px;
}

.service-detail-text {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.service-features {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.service-features span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: #555;
}

.service-features i {
    color: #f4a261;
}

/* ========== OFFER SECTION ========== */
.offer-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0f0c29, #302b63);
    position: relative;
    text-align: center;
}

.offer-content {
    position: relative;
    z-index: 1;
}

.offer-content h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 15px;
}

.offer-content p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.offer-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-offer {
    background: #f4a261;
    color: #0f0c29;
    padding: 14px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-offer:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(244,162,97,0.4);
}

.btn-offer-outline {
    background: transparent;
    border: 2px solid #f4a261;
    color: #f4a261;
    padding: 12px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-offer-outline:hover {
    background: #f4a261;
    color: #0f0c29;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 992px) {
    .service-detailed-card {
        grid-template-columns: 1fr;
    }
    
    .service-detailed-content {
        padding: 0 25px 25px 25px;
    }
    
    .service-detailed-image {
        min-height: 280px;
    }
    
    .services-header h2 {
        font-size: 2rem;
    }
    
    .offer-content h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .service-features {
        flex-direction: column;
        gap: 10px;
    }
    
    .offer-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-offer, .btn-offer-outline {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
}
/* HİZMETLER SAYFASI BİTİŞ*/




/* PROJELER SAYFASI BAŞLANGIÇ */
/* ========== PROJECT TABS ========== */
.project-tabs {
    padding: 30px 0 0;
    background: #f8f9fa;
}

.tab-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 12px 30px;
    background: transparent;
    border: 2px solid #f4a261;
    color: #f4a261;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: 0.3s;
}

.tab-btn.active,
.tab-btn:hover {
    background: #f4a261;
    color: white;
}

/* ========== PROJECT SECTIONS ========== */
.project-section {
    padding: 60px 0;
    display: none;
}

.project-section.active-tab {
    display: block;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.project-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: 0.4s;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(244,162,97,0.15);
}

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

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s;
}

.project-card:hover .project-image img {
    transform: scale(1.05);
}

.project-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 6px 15px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 600;
    color: white;
}

.project-badge.biten {
    background: #27ae60;
}

.project-badge.devam {
    background: #f39c12;
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.3s;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-view {
    background: #f4a261;
    border: none;
    padding: 10px 20px;
    border-radius: 30px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.project-view:hover {
    transform: scale(1.05);
    background: #e76f00;
}

.project-content {
    padding: 20px;
}

.project-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #0a2b3e;
}

.project-location {
    color: #f4a261;
    font-size: 0.85rem;
    margin-bottom: 10px;
}

.project-location i {
    margin-right: 5px;
}

.project-desc {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.project-meta {
    display: flex;
    gap: 15px;
    font-size: 0.8rem;
    color: #888;
}

.project-meta i {
    margin-right: 5px;
}

/* Project Progress */
.project-progress {
    margin-top: 15px;
}

.progress-label {
    font-size: 0.75rem;
    color: #888;
    margin-bottom: 5px;
}

.progress-bar {
    height: 6px;
    background: #e0e0e0;
    border-radius: 3px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #f4a261, #e76f00);
    border-radius: 3px;
}

.progress-percent {
    font-size: 0.7rem;
    color: #f4a261;
    margin-top: 5px;
    font-weight: 600;
}

/* ========== PROJECT MODAL ========== */
.project-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: white;
    border-radius: 20px;
    width: 90%;
    max-width: 900px;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    animation: modalFadeIn 0.3s;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 2rem;
    cursor: pointer;
    color: #999;
    transition: 0.3s;
    z-index: 10;
}

.modal-close:hover {
    color: #f4a261;
}

.modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.modal-image {
    height: 100%;
    min-height: 300px;
}

.modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px 0 0 20px;
}

.modal-info {
    padding: 30px;
}

.modal-info h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #0a2b3e;
}

.modal-meta {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.modal-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 0.9rem;
}

.modal-meta i {
    color: #f4a261;
    width: 20px;
}

.modal-description h3 {
    margin-bottom: 10px;
    color: #0a2b3e;
}

.modal-description p {
    color: #666;
    line-height: 1.8;
}

/* ========== REFERENCES SECTION ========== */
.references-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.references-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    align-items: center;
    margin-top: 40px;
}

.reference-item {
    text-align: center;
    opacity: 0.6;
    transition: 0.3s;
}

.reference-item:hover {
    opacity: 1;
}

.reference-item img {
    max-width: 120px;
    height: auto;
    filter: grayscale(100%);
    transition: 0.3s;
}

.reference-item:hover img {
    filter: grayscale(0);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    .modal-body {
        grid-template-columns: 1fr;
    }
    
    .modal-image {
        min-height: 200px;
    }
    
    .modal-image img {
        border-radius: 20px 20px 0 0;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .tab-btn {
        padding: 8px 20px;
        font-size: 0.9rem;
    }
    
    .references-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}
/* PROJELER SAYFASI BİTİŞ */



/* GÜNCEL .PHP SAYFASI BAŞLANGIÇ */
/* ========== CATEGORY TABS ========== */
.category-tabs {
    padding: 40px 0 0;
    background: #f8f9fa;
}

.category-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.category-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    background: transparent;
    border: 2px solid #f4a261;
    color: #f4a261;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: 0.3s;
}

.category-btn.active,
.category-btn:hover {
    background: #f4a261;
    color: white;
}

/* ========== NEWS PAGE ========== */
.news-page, .blog-page {
    padding: 60px 0;
}

.news-page-grid, .blog-page-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.news-page-card, .blog-page-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: 0.4s;
}

.news-page-card:hover, .blog-page-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(244,162,97,0.15);
}

.news-page-image, .blog-page-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.news-page-image img, .blog-page-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s;
}

.news-page-card:hover .news-page-image img,
.blog-page-card:hover .blog-page-image img {
    transform: scale(1.05);
}

.news-page-date {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: #f4a261;
    color: white;
    padding: 8px 12px;
    border-radius: 10px;
    text-align: center;
    font-weight: bold;
}

.news-page-date span {
    font-size: 1.2rem;
    display: block;
    line-height: 1;
}

.news-page-date small {
    font-size: 0.7rem;
}

.blog-page-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #f4a261;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.news-page-content, .blog-page-content {
    padding: 20px;
}

.news-page-content h3, .blog-page-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #0a2b3e;
}

.news-page-meta, .blog-page-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.8rem;
    color: #888;
}

.news-page-meta i, .blog-page-meta i {
    margin-right: 5px;
}

.news-page-content p, .blog-page-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.btn-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #f4a261;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.btn-read-more:hover {
    gap: 12px;
    color: #e76f00;
}

/* ========== PAGINATION ========== */
.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.page-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    background: white;
    border: 1px solid #e0e0e0;
    color: #666;
    text-decoration: none;
    border-radius: 8px;
    transition: 0.3s;
}

.page-link:hover,
.page-link.active {
    background: #f4a261;
    border-color: #f4a261;
    color: white;
}

/* ========== NO CONTENT ========== */
.no-content {
    text-align: center;
    padding: 60px 20px;
    background: white;
    border-radius: 15px;
}

.no-content i {
    font-size: 4rem;
    color: #ddd;
    margin-bottom: 15px;
}

.no-content p {
    color: #999;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    .news-page-grid, .blog-page-grid {
        grid-template-columns: 1fr;
    }
    
    .category-btn {
        padding: 8px 20px;
        font-size: 0.9rem;
    }
    
    .pagination {
        gap: 5px;
    }
    
    .page-link {
        min-width: 35px;
        height: 35px;
        font-size: 0.85rem;
    }
}
/* GÜNCEL PHP SAYFASI BİTİŞ */




/* GALERİ SAYFASI BAŞLANGIÇ */
/* ========== GALLERY FILTERS ========== */
.gallery-filters {
    padding: 40px 0 0;
    background: #f8f9fa;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 25px;
    background: white;
    border: 1px solid #e0e0e0;
    color: #666;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 30px;
    text-decoration: none;
    transition: 0.3s;
}

.filter-btn:hover,
.filter-btn.active {
    background: #f4a261;
    border-color: #f4a261;
    color: white;
}

/* ========== GALLERY GRID ========== */
.gallery-section {
    padding: 60px 0;
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    aspect-ratio: 1 / 0.8;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 12, 41, 0.85);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.3s;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-icon {
    width: 50px;
    height: 50px;
    background: #f4a261;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    transform: scale(0);
    transition: 0.3s;
}

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

.gallery-icon i {
    font-size: 1.5rem;
    color: white;
}

.gallery-caption {
    text-align: center;
    color: white;
    transform: translateY(20px);
    transition: 0.3s;
    padding: 0 15px;
}

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

.gallery-caption h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.gallery-caption p {
    font-size: 0.8rem;
    opacity: 0.8;
}

/* ========== VIDEO GALLERY ========== */
.video-gallery {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

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

.video-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: 0.4s;
}

.video-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(244,162,97,0.15);
}

.video-thumb {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.video-thumb img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: 0.4s;
}

.video-item:hover .video-thumb img {
    transform: scale(1.05);
}

.video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: #f4a261;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: 0.3s;
    opacity: 0.9;
}

.video-play:hover {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 1;
}

.video-play i {
    font-size: 1.5rem;
    color: white;
    margin-left: 5px;
}

.video-item h4 {
    padding: 15px;
    text-align: center;
    color: #0a2b3e;
    font-size: 1rem;
}

/* ========== LIGHTBOX CUSTOM ========== */
.lb-outerContainer {
    border-radius: 12px;
}

.lb-data .lb-details {
    font-size: 1rem;
}

.lb-data .lb-caption {
    font-size: 0.9rem;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 15px;
    }
    
    .filter-btn {
        padding: 6px 15px;
        font-size: 0.8rem;
    }
    
    .video-grid {
        grid-template-columns: 1fr;
    }
    
    .video-play {
        width: 45px;
        height: 45px;
    }
    
    .video-play i {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item {
        aspect-ratio: 16 / 9;
    }
}
/* GALERİ SAYFASI BİTİİŞ */



/* İLETİŞİM SAYFASI BAŞLANGIÇ */
/* ========== CONTACT INFO CARDS ========== */
.contact-info-cards {
    padding: 60px 0;
    background: #f8f9fa;
}

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

.contact-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: 0.4s;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(244,162,97,0.15);
}

.contact-card-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #f4a26120, #e76f0020);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-card-icon i {
    font-size: 2rem;
    color: #f4a261;
}

.contact-card h3 {
    margin-bottom: 15px;
    color: #0a2b3e;
}

.contact-card p {
    margin-bottom: 5px;
}

.contact-card a {
    color: #666;
    text-decoration: none;
    transition: 0.3s;
}

.contact-card a:hover {
    color: #f4a261;
}

/* ========== CONTACT FORM SECTION ========== */
.contact-form-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

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

.text-left .section-badge {
    display: inline-block;
}

.contact-form-wrapper {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.contact-form {
    margin-top: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    position: relative;
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 45px 14px 20px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: 0.3s;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #f4a261;
    box-shadow: 0 0 0 3px rgba(244,162,97,0.1);
}

.form-group i {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #aaa;
    pointer-events: none;
}

.form-group textarea + i {
    top: 18px;
    transform: none;
}

.submit-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #f4a261, #e76f00);
    border: none;
    border-radius: 10px;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(244,162,97,0.3);
}

/* Alert Messages */
.alert {
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Map Section */
.contact-map-wrapper {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.map-container iframe {
    width: 100%;
    height: 350px;
}

.map-info {
    padding: 20px;
    background: #f8f9fa;
}

.social-links-vertical {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: 0.3s;
}

.social-link.fb { background: #3b5998; color: white; }
.social-link.tw { background: #1da1f2; color: white; }
.social-link.ln { background: #0077b5; color: white; }
.social-link.ig { background: #e4405f; color: white; }
.social-link.yt { background: #ff0000; color: white; }

.social-link:hover {
    transform: translateY(-3px);
    opacity: 0.9;
}

/* ========== FAQ SECTION ========== */
.faq-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.faq-grid {
    max-width: 800px;
    margin: 40px auto 0;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    cursor: pointer;
    transition: 0.3s;
}

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

.faq-question h3 {
    font-size: 1rem;
    margin: 0;
    color: #0a2b3e;
}

.faq-question i {
    color: #f4a261;
    transition: 0.3s;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: 0.3s;
    padding: 0 20px;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 20px 18px;
}

.faq-answer p {
    color: #666;
    line-height: 1.6;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

@media (max-width: 768px) {
    .contact-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form-wrapper {
        padding: 25px;
    }
    
    .social-links-vertical {
        flex-wrap: wrap;
    }
    
    .faq-question h3 {
        font-size: 0.9rem;
        padding-right: 10px;
    }
}
/* İLETİŞİM SAYFASI BİTİŞ */




/* haber datay başlangıç */
/* ========== NEWS DETAIL PAGE ========== */
.news-detail-section {
    padding: 60px 0;
}

.news-detail-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.news-detail-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
    color: #888;
    font-size: 0.85rem;
}

.news-detail-image {
    margin-bottom: 30px;
    border-radius: 15px;
    overflow: hidden;
}

.news-detail-image img {
    width: 100%;
    border-radius: 15px;
}

.news-detail-text {
    line-height: 1.8;
    color: #444;
}

.news-detail-text p {
    margin-bottom: 20px;
}

.news-share {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 15px;
}

.news-share span {
    font-weight: 600;
    color: #333;
}

.news-share a {
    width: 35px;
    height: 35px;
    background: #f0f0f0;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #666;
    transition: 0.3s;
}

.news-share a:hover {
    background: #f4a261;
    color: white;
}

/* Sidebar Widgets */
.sidebar-widget {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 30px;
}

.sidebar-widget h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f4a261;
    display: inline-block;
}

.recent-posts {
    list-style: none;
}

.recent-posts li {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e0e0e0;
}

.recent-posts li:last-child {
    border-bottom: none;
}

.recent-posts a {
    display: flex;
    gap: 15px;
    text-decoration: none;
}

.recent-posts img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 10px;
}

.recent-info h4 {
    font-size: 0.9rem;
    color: #333;
    margin-bottom: 5px;
}

.recent-info span {
    font-size: 0.7rem;
    color: #888;
}

.categories {
    list-style: none;
}

.categories li {
    margin-bottom: 10px;
}

.categories a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #666;
    text-decoration: none;
    transition: 0.3s;
}

.categories a:hover {
    color: #f4a261;
    transform: translateX(5px);
}

.categories i {
    font-size: 0.7rem;
}

.contact-box {
    text-align: center;
}

.contact-box p {
    margin-bottom: 10px;
}

.contact-box a {
    color: #666;
    text-decoration: none;
}

.btn-contact {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background: #f4a261;
    color: white;
    border-radius: 8px;
    text-decoration: none;
    transition: 0.3s;
}

.btn-contact:hover {
    background: #e76f00;
}

/* Responsive */
@media (max-width: 992px) {
    .news-detail-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .news-detail-meta {
        flex-wrap: wrap;
        gap: 10px;
    }
}
/* haber detay bitiş */