@font-face {
    font-family: 'Playfair Display';
    src: url('../fonts/PlayfairDisplay.ttf') format('ttf');
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: 'Playfair Display';
    src: url('../fonts/PlayfairDisplay.ttf') format('ttf');
    font-weight: 700;
    font-display: swap;
}

@font-face {
    font-family: 'Playfair Display';
    src: url('../fonts/PlayfairDisplay.ttf') format('ttf');
    font-weight: 500;
    font-display: swap;
}

:root {
    --primary-color: #005A9C;
    --secondary-color: #FFC107;
    --dark-color: #212529;
    --light-color: #f8f9fa;
}

* {
    scroll-behavior: smooth;
}

body {
    font-family: 'Playfair Display', sans-serif;
    overflow-x: hidden;
}

.navbar {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--primary-color) !important;
}

.navbar-nav .nav-link {
    color: var(--dark-color);
    font-weight: 500;
    margin: 0 1rem;
    position: relative;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color) !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

.hero-section {
    position: relative;
    background: url('../images/hero.webp') no-repeat center center;
    background-size: cover;
    color: #fff;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 90, 156, 0.7), rgba(0, 30, 60, 0.8));
}

.hero-content {
    position: relative;
    z-index: 2;
}

.section-padding {
    padding: 80px 0;
}

.section-title {
    margin-bottom: 60px;
    font-weight: 700;
    color: var(--dark-color);
}

.section-title span {
    color: var(--primary-color);
}

.feature-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    border-radius: 15px;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.why-us-img {
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.testimonial-carousel .carousel-item {
    padding: 40px;
    background-color: var(--light-color);
    border-radius: 15px;
    min-height: 300px;
}

.testimonial-carousel .carousel-indicators [data-bs-target] {
    background-color: var(--secondary-color);
}

.ofis-turleri {
    background-color: var(--primary-color);
    color: white;
}

.review-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
}

.footer-wave-container {
    background-color: var(--dark-color);
    color: #fff;
    position: relative;
}

.footer-wave {
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.footer-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 120px;
}

.footer-wave .shape-fill {
    fill: #f8f9fa;
}

.footer-content {
    padding: 150px 0 50px 0;
}

.footer-content h5 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.footer-content a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-content a:hover {
    color: #fff;
}

.footer-links li {
    padding: 5px 0;
}

.footer-social-icons a {
    font-size: 1.5rem;
    margin-right: 15px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
}

.form-check {
    font-size: 0.9rem;
}

.form-check-label a {
    color: #005A9C;
    text-decoration: underline;
}

.form-check-label a:hover {
    color: #FFC107;
}

iframe {
    border: 0;
}

.hero-banner {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('../images/banner.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-banner-content {
    position: relative;
    z-index: 2;
    color: #fff;
    padding: 20px;
}

.hero-banner-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-banner-content p {
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.hero-banner-content .btn-warning {
    padding: 12px 30px;
    font-size: 1.2rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.hero-banner-content .btn-warning:hover {
    background-color: #e0a800;
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .hero-banner {
        height: 100vh;
    }

    .hero-banner-content h1 {
        font-size: 2rem;
    }

    .hero-banner-content p {
        font-size: 1rem;
        max-width: 90%;
    }

    .hero-banner-content .btn-warning {
        padding: 10px 20px;
        font-size: 1rem;
    }
}