/* Base Styles */
:root {
    --primary-color: #009fe3;
    --secondary-color: #333;
    --light-gray: #f5f5f5;
    --dark-gray: #444;
    --white: #fff;
    --black: #000;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.section-padding {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 36px;
    color: var(--secondary-color);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.section-title p {
    color: var(--dark-gray);
    font-size: 18px;
}

.btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Fade-in Animation */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.active {
opacity: 1;
    transform: translateY(0);
}

/* Header Styles */
.header {
    padding: 20px 0;
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 60px;
}

.contact-info {
    display: flex;
    align-items: center;
}

.phone, .email {
    margin-right: 20px;
    display: flex;
    align-items: center;
}

.phone i, .email i {
    margin-right: 8px;
    color: var(--primary-color);
}

.social-media {
    display: flex;
}

.social-icon {
    width: 32px;
    height: 32px;
    background-color: var(--light-gray);
    border-radius: 50%;
    display: flex; /* İkonu ortalamak için */
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-icon:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.hamburger-menu {
    display: none;
    cursor: pointer;
    font-size: 24px;
}

/* Navbar Styles */
.navbar {
    background-color: var(--primary-color);
    padding: 15px 0;
    transition: var(--transition);
}

.navbar.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    animation: slideDown 0.5s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links {
    display: flex;
}

.nav-links li {
    margin-right: 20px;
}

.nav-links a {
    color: var(--white);
    font-weight: 500;
    padding: 5px 0;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--white);
    bottom: 0;
    left: 0;
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.teklif-btn {
    background-color: var(--white);
    color: var(--primary-color);
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 500;
    text-transform: uppercase;
    transition: var(--transition);
}

.teklif-btn:hover {
    background-color: var(--secondary-color);
    color: var(--white);
}

/* Mobile Menu Styles */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background-color: var(--white);
    z-index: 1000;
    padding: 20px;
    transition: right 0.3s ease;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.close-menu {
    text-align: right;
    margin-bottom: 20px;
    cursor: pointer;
    font-size: 24px;
}

.mobile-nav-links li {
    margin-bottom: 15px;
}

.mobile-nav-links a {
    color: var(--secondary-color);
    font-weight: 500;
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid var(--light-gray);
}

.mobile-nav-links a.active {
    color: var(--primary-color);
}

.mobile-contact {
    margin-top: 30px;
}

.mobile-contact .phone,
.mobile-contact .email {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.mobile-contact .social-media {
    margin-top: 20px;
}

/* Slider Styles */
.slider-section {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.slider-container {
    position: relative;
    height: 100%;
    width: 100%;
}

.slider {
    position: relative;
    height: 100%;
    width: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease, visibility 1s ease;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.slide-content {
    text-align: center;
    color: var(--white);
    max-width: 800px;
    padding: 30px;
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 10px;
    transform: translateY(30px);
    opacity: 0;
    transition: transform 0.6s ease, opacity 0.6s ease;
}

.slide.active .slide-content {
    transform: translateY(0);
    opacity: 1;
    transition-delay: 0.3s;
}

.slide-content h2 {
    font-size: 42px;
    margin-bottom: 15px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

.slide-content p {
    font-size: 18px;
    margin-bottom: 25px;
}

.slider-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 10;
}

.prev-btn, .next-btn {
    width: 50px;
    height: 50px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    cursor: pointer;
    transition: var(--transition);
}

.prev-btn:hover, .next-btn:hover {
    background-color: var(--primary-color);
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background-color: var(--white);
    transform: scale(1.2);
}

/* Services Styles */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 30px;
}

.service-item {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.service-img {
    height: 200px;
    overflow: hidden;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-item:hover .service-img img {
    transform: scale(1.1);
}

.service-item h3 {
    padding: 15px;
    font-size: 16px;
    text-align: center;
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* About Styles */
.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-img {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 36px;
    color: var(--secondary-color);
    margin-bottom: 20px;
    position: relative;
}

.about-text h2::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
    bottom: -10px;
    left: 0;
}

.about-text p {
    margin-bottom: 25px;
    color: var(--dark-gray);
    line-height: 1.8;
}

/* Gallery Styles */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
}

.gallery-item {
    position: relative;
    height: 200px;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .overlay {
    opacity: 1;
}

.overlay i {
    color: var(--white);
    font-size: 24px;
}

.gallery-modal {
    display: none;
    position: fixed;
    z-index: 1001;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
}

.modal-content {
    margin: auto;
    display: block;
    max-width: 80%;
    max-height: 80%;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 35px;
    color: var(--white);
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

/* Form Styles */
.quote-form {
    background-color: var(--light-gray);
    padding: 100px 0;
}

#quote-form {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
    margin-bottom: 20px;
}

input, select, textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    font-size: 16px;
    transition: var(--transition);
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 5px rgba(0, 159, 227, 0.3);
}

textarea {
    height: 150px;
    resize: vertical;
}

/* Footer Styles */
.footer {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 50px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-logo {
    flex: 1;
    min-width: 250px;
}

.footer-logo img {
    height: 60px;
    margin-bottom: 15px;
}

.footer-links, .footer-contact {
    flex: 1;
    min-width: 250px;
}

.footer h4 {
    margin-bottom: 20px;
    font-size: 18px;
    position: relative;
    padding-bottom: 10px;
}

.footer h4::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 2px;
    background-color: var(--primary-color);
    bottom: 0;
    left: 0;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-contact ul li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.footer-contact ul li i {
    margin-right: 10px;
    color: var(--primary-color);
    margin-top: 5px;
}

.footer-social {
    display: flex;
    gap: 10px; /* İkonlar arasına boşluk bırakır */
    justify-content: flex-start; /* Sol hizalama yapar, ortalamak için: center */
    align-items: center;
}

.footer .social-icon {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.footer .social-icon:hover {
    background-color: var(--primary-color);
}

/* Copyright Styles */
.copyright {
    background-color: #222;
    color: var(--white);
    padding: 15px 0;
}

.copyright-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.policy-links a {
    margin-left: 15px;
    color: var(--light-gray);
}

.policy-links a:hover {
    color: var(--primary-color);
}

/* Responsive Styles */
@media (max-width: 960px) {
    .contact-info {
        display: none;
    }
    
    .hamburger-menu {
        display: block;
    }
    
    .navbar .container {
        justify-content: center;
    }
    
.nav-links {
        display: none;
    }
    
    .quotation {
        display: none;
    }
    
    .slider-section {
        height: 500px;
    }
    
    .slide-content h2 {
        font-size: 32px;
    }
    
    .slide-content p {
        font-size: 16px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .about-img, .about-text {
        flex: none;
        width: 100%;
    }
    
    .about-text {
        margin-top: 30px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .footer-content {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .section-padding {
        padding: 50px 0;
    }
    
    .slider-section {
        height: 400px;
    }
    
    .slide-content h2 {
        font-size: 28px;
    }
    
    .slide-content p {
        font-size: 14px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .copyright-content {
        flex-direction: column;
        text-align: center;
    }
    
    .policy-links {
        margin-top: 10px;
    }
    
    .policy-links a:first-child {
        margin-left: 0;
    }
}

/* Breadcrumb Stil */
.breadcrumb {
    background-color: var(--light-gray);
    padding: 15px 0;
}

.breadcrumb h1 {
    font-size: 36px;
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 10px;
}

.breadcrumb nav {
    text-align: center;
}

.breadcrumb a {
    color: var(--primary-color);
    font-weight: 500;
}

.breadcrumb span {
    color: var(--secondary-color);
}

/* Hakkında Bölümü */
.about-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 36px;
    color: var(--secondary-color);
}

.about-text p {
    line-height: 1.8;
    font-size: 16px;
    margin-top: 20px;
}

.about-img {
    flex: 1;
}

.about-img img {
    width: 100%;
    border-radius: 10px;
}

/* Fotoğraflar Galerisi */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
}

.gallery-item {
    position: relative;
    height: 200px;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .overlay {
    opacity: 1;
}

.overlay i {
    color: var(--white);
    font-size: 24px;
}

/* Responsive Fotoğraf Galerisi */
@media (max-width: 960px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* Hizmet İçerik */
.service-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.service-image {
    flex: 1;
}

.service-image img {
    width: 100%;
    border-radius: 10px;
}

.service-text {
    flex: 1;
}

.service-text h2 {
    font-size: 36px;
    color: var(--secondary-color);
}

.service-text p {
    line-height: 1.8;
    font-size: 16px;
    margin-top: 15px;
}

/* İlgili Hizmetler */
.related-services-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.related-service-item {
    background-color: var(--white);
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.related-service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.related-service-item h3 {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

@media (max-width: 960px) {
    .service-content {
        flex-direction: column;
        text-align: center;
    }

    .service-image, .service-text {
        width: 100%;
    }
}

/* Referanslar Sayfası */
.references-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    justify-items: center;
}

.reference-item {
    background-color: var(--white);
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
}

.reference-item img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
}

/* Responsive Tasarım */
@media (max-width: 960px) {
    .references-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 576px) {
    .references-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* İletişim Sayfası */
.contact-container {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    flex-wrap: wrap;
}

.contact-contact {
    flex: 1;
    padding: 20px;
    background-color: var(--white); /* Arka plan beyaz */
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%; /* Genişliği form ile aynı olacak */
}

.contact-contact h2 {
    font-size: 24px;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.contact-contact p {
    font-size: 16px;
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    width: 100%;
}

.contact-contact i {
    margin-right: 10px;
    color: var(--primary-color);
    font-size: 18px;
}

.contact-contact a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
}

.contact-contact a:hover {
    color: var(--primary-color);
}

/* İletişim Formu */
.contact-form {
    flex: 1;
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    width: 100%; /* Form genişliği contact-contact ile aynı olacak */
}

.contact-form h2 {
    font-size: 24px;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

.contact-form textarea {
    height: 150px;
    resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 5px rgba(0, 159, 227, 0.3);
}

/* Harita Alanı */
.map-section {
    margin-top: 50px;
    margin-bottom: 50px; /* Footer ile arasına boşluk ekler */
}

.map-section h2 {
    text-align: center;
    font-size: 24px;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.map-container {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
}

/* Responsive */
@media (max-width: 960px) {
    .contact-container {
        flex-direction: column;
        gap: 30px;
    }

    .contact-contact,
    .contact-form {
        width: 100%;
    }
}

/* KVKK Sayfası */
.kvkk-content {
    background-color: var(--white);
    padding: 50px 0;
}

.kvkk-content .container {
    max-width: 1200px;
    margin: 0 auto;
}

.kvkk-content h2, h3 {
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.kvkk-content p, ul {
    font-size: 16px;
    line-height: 1.8;
}

.kvkk-content ul {
    padding-left: 20px;
}

.kvkk-content ul li {
    margin-bottom: 10px;
    list-style: disc;
}

.kvkk-content a {
    color: var(--primary-color);
    font-weight: 500;
    text-decoration: none;
}

.kvkk-content a:hover {
    text-decoration: underline;
}

/* Gizlilik Politikası Sayfası */
.privacy-policy {
    background-color: var(--white);
    padding: 50px 0;
}

.privacy-policy .container {
    max-width: 1200px;
    margin: 0 auto;
}

.privacy-policy h2 {
    color: var(--secondary-color);
    font-size: 24px;
    margin-bottom: 15px;
}

.privacy-policy p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.privacy-policy a {
    color: var(--primary-color);
    font-weight: 500;
    text-decoration: none;
}

.privacy-policy a:hover {
    text-decoration: underline;
}
