/* Telefon linkleri için özel stil */
.contact-item a[href^="tel"] {
    color: var(--main-yellow);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}
.contact-item a[href^="tel"]:hover {
    color: #fff200;
    text-decoration: underline;
}
:root {
    --main-yellow: #FFD600;
    --main-black: #222;
    --main-gray: #f5f5f5;
    --main-white: #ffffff;
    --shadow-light: 0 5px 15px rgba(0,0,0,0.05);
    --shadow-medium: 0 8px 30px rgba(0,0,0,0.12);
    --shadow-dark: 0 10px 40px rgba(0,0,0,0.2);
    --transition-normal: all 0.3s ease;
    --transition-slow: all 0.5s ease;
}
body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    background: var(--main-gray);
    color: var(--main-black);
    overflow-x: hidden;
    width: 100%;
    position: relative;
}
header {
    background: var(--main-yellow);
    color: var(--main-black);
    padding: 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0.7rem 1.2rem;
}
.navbar-logo {
    display: flex;
    align-items: center;
}
.navbar-logo img {
    height: 48px;
    width: auto;
    display: block;
}
.navbar-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
    justify-content: flex-end;
}
.navbar-menu a {
    color: var(--main-black);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.08rem;
    letter-spacing: 0.5px;
    transition: color 0.2s;
    padding: 0.3rem 0.7rem;
    border-radius: 6px;
}
.navbar-menu a:hover {
    background: var(--main-black);
    color: var(--main-yellow);
}
@media (max-width: 700px) {
    .navbar {
        flex-direction: column;
        align-items: stretch;
        gap: 0.7rem;
    }
    .navbar-logo {
        justify-content: flex-start;
    }
    .navbar-menu {
        width: 100%;
        justify-content: flex-end;
        gap: 1.2rem;
    }
}
.hero {
    position: relative;
    width: 100%;
    min-height: 0;
    background: var(--main-black);
    color: var(--main-black);
    text-align: center;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}
.banner-img {
    width: 100%;
    height: 48vw;
    max-height: 600px;
    min-height: 300px;
    overflow: hidden;
    position: relative;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
.banner-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    object-position: center;
    max-width: 100%;
}
.features {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin: 2.5rem 0;
}
.section-title {
    position: relative;
    font-weight: 700;
    color: var(--main-black);
    display: inline-block;
    padding-bottom: 10px;
    margin-bottom: 30px;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 60px;
    height: 3px;
    background: var(--main-yellow);
    transform: translateX(-50%);
}

.animated-cards {
    margin: 3rem 0 2rem 0;
}

.card-wrapper {
    height: 100%;
}

.service-card {
    background: var(--main-white);
    border-radius: 16px;
    box-shadow: var(--shadow-light);
    padding: 2rem 1.2rem 1.5rem 1.2rem;
    height: 100%;
    text-align: left;
    position: relative;
    opacity: 0;
    transform: translateY(40px);
    animation: cardFadeIn 0.8s forwards;
    transition: var(--transition-normal);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.col-md-4:nth-child(1) .service-card { animation-delay: 0.1s; }
.col-md-4:nth-child(2) .service-card { animation-delay: 0.2s; }
.col-md-4:nth-child(3) .service-card { animation-delay: 0.3s; }
.col-md-4:nth-child(4) .service-card { animation-delay: 0.4s; }
.col-md-4:nth-child(5) .service-card { animation-delay: 0.5s; }
.col-md-4:nth-child(6) .service-card { animation-delay: 0.6s; }
@keyframes cardFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.card-number {
    position: absolute;
    top: 1.2rem;
    left: 1.2rem;
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--main-yellow);
    opacity: 0.7;
}
.card h3 {
    margin-top: 2.2rem;
    margin-bottom: 0.7rem;
    color: var(--main-black);
    font-size: 1.15rem;
}
.card p {
    color: #444;
    font-size: 1rem;
}
@media (max-width: 900px) {
    .animated-cards {
        gap: 1.2rem;
    }
    .card {
        max-width: 100%;
        flex: 1 1 100%;
    }
}

/* Genel Animasyon Sınıfları */
.active-section {
    animation: sectionFadeIn 0.8s forwards;
}

@keyframes sectionFadeIn {
    from {
        opacity: 0.7;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hover animasyonları */
.card-hover {
    background-color: var(--main-yellow);
}

.card-hover h3,
.card-hover p,
.card-hover .card-number {
    color: var(--main-black);
}

/* Responsive Düzenlemeler */
@media (max-width: 768px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .banner-img {
        height: 60vw;
        min-height: 200px;
    }
    
    .highlight-item {
        flex-direction: column;
        text-align: center;
    }
    
    .highlight-icon {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-item .icon-container {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .map-container {
        height: 300px;
    }
    
    .map-container iframe {
        height: 100% !important;
    }
}

@media (max-width: 576px) {
    .banner-img {
        height: 70vw;
        min-height: 180px;
    }
}

/* Hakkımızda Bölümü */
.about-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: var(--shadow-medium);
}

.about-image {
    transition: var(--transition-normal);
    transform: scale(1);
}

.about-image-container:hover .about-image {
    transform: scale(1.05);
}

.about-content {
    opacity: 0;
    animation: fadeInRight 1s ease forwards;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.about-content h3 {
    position: relative;
    margin-bottom: 20px;
    padding-bottom: 12px;
    color: var(--main-black);
    font-weight: 700;
}

.about-content h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: var(--main-yellow);
}

.about-content p {
    color: #444;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding: 15px;
    background: var(--main-white);
    border-radius: 8px;
    box-shadow: var(--shadow-light);
    transition: var(--transition-normal);
}

.highlight-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.highlight-icon {
    width: 50px;
    height: 50px;
    background: var(--main-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: var(--main-black);
    font-size: 20px;
}

.highlight-text strong {
    display: block;
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
    color: var(--main-black);
}

.highlight-text span {
    font-size: 14px;
    color: #666;
}

/* İletişim Bölümü */
.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    opacity: 0;
    animation: fadeIn 1s ease forwards 0.3s;
}

.contact-info {
    height: 100%;
}

.contact-card {
    background: var(--main-white);
    border-radius: 10px;
    box-shadow: var(--shadow-medium);
    padding: 30px;
    height: 100%;
    opacity: 0;
    animation: fadeInLeft 1s ease forwards 0.5s;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.contact-item {
    display: flex;
    margin-bottom: 25px;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item .icon-container {
    width: 40px;
    height: 40px;
    background: var(--main-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: var(--main-black);
    flex-shrink: 0;
}

.contact-item h3 {
    font-size: 18px;
    margin: 0 0 5px;
    color: var(--main-black);
    font-weight: 600;
}

.contact-item p {
    margin: 0;
    color: #666;
    line-height: 1.6;
}

/* Footer */
footer {
    background: var(--main-black);
    color: var(--main-yellow);
    text-align: center;
    padding: 1.5rem;
    margin-top: 0;
}
