/* Genel Stiller */
body {
    padding-top: 76px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Header Stiller */
.navbar {
    transition: all 0.3s ease;
}

.navbar-brand h1 {
    color: #333;
    font-weight: 800;
    font-size: 1.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.animated-title {
    position: relative;
    display: inline-block;
    animation: fadeInDown 1s ease-out;
}

.animated-title::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: -5px;
    left: 0;
    background: #007bff;
    transition: width 0.3s ease;
}

.navbar-brand:hover .animated-title::after {
    width: 100%;
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 991.98px) {
    .navbar-brand h1 {
        font-size: 1.5rem;
    }
}

@media (max-width: 767.98px) {
    .navbar-brand h1 {
        font-size: 1.2rem;
        letter-spacing: 0.3px;
    }
    
    .animated-title::after {
        height: 2px;
        bottom: -3px;
    }
}

@media (max-width: 575.98px) {
    .navbar-brand h1 {
        font-size: 1rem;
        letter-spacing: 0.2px;
    }
}

.nav-link {
    color: #333 !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #007bff !important;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../img/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    width: 1920px;
    height: 800px;
    max-width: 100%;
    display: flex;
    align-items: center;
    color: white;
    position: relative;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-section p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 600px;
}

/* Servis Kartları */
.service-card {
    background: #fff;
    border-radius: 15px;
    padding: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.service-img {
    position: relative;
    overflow: hidden;
    border-radius: 15px 15px 0 0;
}

.service-img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover .service-img::before {
    opacity: 1;
}

.service-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-img img {
    transform: scale(1.1);
}

.service-content {
    padding: 1.5rem;
    text-align: center;
}

.service-card h3 {
    color: #333;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.service-card p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.whatsapp-btn {
    background: #25D366;
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    width: calc(100% - 2rem);
    margin: 0 1rem 1rem;
    text-decoration: none;
}

.whatsapp-btn i {
    margin-right: 8px;
    font-size: 1.2rem;
}

.whatsapp-btn:hover {
    background: #128C7E;
    color: white;
    transform: translateY(-2px);
}

/* Footer Stiller */
.footer {
    background-color: #1a1a1a;
}

.footer h5 {
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer ul li {
    margin-bottom: 0.75rem;
}

.footer ul li a {
    transition: color 0.3s ease;
}

.footer ul li a:hover {
    color: #007bff !important;
}

.social-links a {
    display: inline-block;
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: background 0.3s ease;
}

.social-links a:hover {
    background: #007bff;
    color: white !important;
}

/* Responsive Ayarlar */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background: white;
        padding: 1rem;
        border-radius: 10px;
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
        margin-top: 1rem;
    }
    .hero-section {
        min-height: 500px;
        height: 70vh;
    }
    
    .hero-section h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 767.98px) {
    .hero-section {
        min-height: 400px;
        height: 60vh;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .hero-section p {
        font-size: 1.1rem;
    }
}

.contact-banner {
    background: #0056b3;
    height: 90px;
    max-width: 728px;
    margin: 2rem auto;
    display: flex;
    align-items: center;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-banner .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 0 2rem;
    width: 100%;
}

.contact-banner-text {
    color: white;
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.3;
}

.contact-banner-phone {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 700;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.contact-banner-phone i {
    background: rgba(255, 255, 255, 0.2);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.contact-banner-phone:hover {
    color: rgba(255, 255, 255, 0.9);
}

.contact-banner-phone:hover i {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

@media (max-width: 767.98px) {
    .contact-banner {
        height: auto;
        padding: 1rem;
        margin: 1rem;
    }

    .contact-banner .container {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 0;
    }
    
    .contact-banner-text {
        font-size: 1.1rem;
    }
    
    .contact-banner-phone {
        font-size: 1.25rem;
    }
}

/* Hakkımızda Sayfası Stilleri */
.about-hero {
    padding: 120px 0 80px;
    background: linear-gradient(to right, rgba(255,255,255,0.95), rgba(255,255,255,0.8)), url('../img/about-bg.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
}

.about-content {
    position: relative;
    z-index: 2;
}

.about-image {
    position: relative;
}

.about-image::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 20px;
    left: 20px;
    background: #007bff;
    z-index: -1;
    border-radius: 10px;
}

.feature-card {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    background: #007bff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
    background: #0056b3;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.feature-card p {
    color: #666;
    margin-bottom: 0;
}

.stats {
    position: relative;
    overflow: hidden;
}

.stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/pattern.png');
    opacity: 0.1;
}

.stat-card {
    padding: 2rem;
    position: relative;
    z-index: 2;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.stat-label {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 991.98px) {
    .about-hero {
        padding: 80px 0 60px;
    }
    
    .about-image::after {
        display: none;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 767.98px) {
    .about-hero {
        padding: 60px 0 40px;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
}

/* İletişim Sayfası Stilleri */
.contact-hero {
    padding: 120px 0 60px;
    background: linear-gradient(to right, rgba(255,255,255,0.95), rgba(255,255,255,0.8)), url('../img/contact-bg.jpg');
    background-size: cover;
    background-position: center;
}

.contact-card {
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.whatsapp-icon-large {
    width: 100px;
    height: 100px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: white;
    font-size: 3rem;
    transition: all 0.3s ease;
}

.contact-card:hover .whatsapp-icon-large {
    transform: scale(1.1);
    background: #128C7E;
}

.btn-whatsapp {
    background: #25D366;
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-whatsapp:hover {
    background: #128C7E;
    color: white;
    transform: translateY(-2px);
}

.contact-info-card {
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-5px);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: #007bff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: white;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.contact-info-item:hover .contact-icon {
    transform: scale(1.1);
    background: #0056b3;
}

.map-container {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 767.98px) {
    .contact-hero {
        padding: 80px 0 40px;
    }
    
    .whatsapp-icon-large {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
    }
    
    .contact-info-item {
        margin-bottom: 2rem;
    }
}

/* Sıkça Sorulan Sorular Stilleri */
.faq-section {
    background: linear-gradient(to right, rgba(255,255,255,0.95), rgba(255,255,255,0.8)), url('../img/pattern-bg.png');
    background-size: cover;
    background-position: center;
}

.accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: 10px !important;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.accordion-button {
    padding: 1.25rem 1.5rem;
    font-weight: 600;
    color: #333;
    background: white;
    border: none;
}

.accordion-button:not(.collapsed) {
    color: #007bff;
    background: white;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border: none;
}

.accordion-button::after {
    background-size: 1.25rem;
    transition: all 0.3s ease;
}

.accordion-body {
    padding: 1.25rem 1.5rem;
    background: white;
    color: #666;
    line-height: 1.6;
}

@media (max-width: 767.98px) {
    .accordion-button {
        padding: 1rem 1.25rem;
        font-size: 0.95rem;
    }
    
    .accordion-body {
        padding: 1rem 1.25rem;
        font-size: 0.9rem;
    }
}

/* Müşteri Yorumları Stilleri */
.testimonials {
    background: linear-gradient(to right, rgba(255,255,255,0.95), rgba(255,255,255,0.8)), url('../img/pattern-light.png');
    background-size: cover;
    background-position: center;
}

.testimonial-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.testimonial-rating {
    color: #ffc107;
    font-size: 1.2rem;
}

.testimonial-text {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    background: #007bff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.testimonial-info h5 {
    color: #333;
    font-size: 1.1rem;
    margin: 0;
}

@media (max-width: 767.98px) {
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .testimonial-text {
        font-size: 0.95rem;
    }
    
    .testimonial-avatar {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .testimonial-info h5 {
        font-size: 1rem;
    }
}

/* İstatistik Kartları Stilleri */
.statistics {
    background: linear-gradient(135deg, #0056b3 0%, #007bff 100%);
    position: relative;
    overflow: hidden;
}

.statistics::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/pattern-light.png');
    opacity: 0.1;
}

.statistic-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.statistic-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.statistic-icon {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1rem;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.statistic-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.statistic-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 991.98px) {
    .statistic-card {
        padding: 1.5rem;
    }
    
    .statistic-icon {
        font-size: 2rem;
        height: 50px;
    }
    
    .statistic-number {
        font-size: 2rem;
    }
    
    .statistic-label {
        font-size: 1rem;
    }
}

@media (max-width: 767.98px) {
    .statistic-card {
        margin-bottom: 1rem;
    }
} 