:root {
    --primary-color: #0d3b66;
    --accent-color: #f4d35e;
    --light-bg: #fafafa;
    --dark-section: #f0f4f8;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: #333;
    overflow-x: hidden;
}

.hero-section {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 70vh;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.navbar-brand img {
    height: 48px;
    width: 48px;
    object-fit: contain;
    background-color: transparent !important;
}

.btn-warning {
    background-color: var(--accent-color);
    border: none;
    color: #0d3b66;
    padding: 12px 35px;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-warning:hover {
    background-color: #ee964b;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 20px rgba(238, 150, 75, 0.3);
}

.btn-highlight {
    background-color: var(--primary-color);
    color: white !important;
    border-radius: 50px;
    padding: 8px 25px !important;
}

/* Feature Cards Image Fix */
.feature-card-img {
    height: 100%;
    /* Daha büyük ve karemsi görünüm */
    width: 100%;
    object-fit: cover;
    border-radius: 1rem 1rem 0 0;
    transition: transform 0.5s ease;
}

.card:hover .feature-card-img {
    transform: scale(1.08);
}

/* Section Contrasts */
#about {
    background-color: white;
}

#contact {
    background-color: var(--dark-section);
    padding-bottom: 0 !important;
}

/* Full Width Map */
.full-width-map {
    width: 100%;
    height: 500px;
    border: 0;
    display: block;
}

/* Modern Form Cards (apply.html) */
.form-card {
    border: none;
    border-radius: 2rem;
    box-shadow: 0 20px 60px rgba(13, 59, 102, 0.12) !important;
    background: white;
}

.form-header {
    background: linear-gradient(135deg, var(--primary-color), #083055);
    padding: 3rem;
    color: white;
    border-radius: 2rem 2rem 0 0;
}

.form-control,
.form-select {
    padding: 1.1rem 1.5rem;
    border-radius: 1.2rem;
    border: 2px solid #edeff2;
    background-color: #fcfdfe;
    transition: all 0.3s ease;
}

.form-control:focus {
    box-shadow: 0 10px 30px rgba(13, 59, 102, 0.08);
    border-color: var(--primary-color);
    background-color: white;
    transform: translateY(-2px);
}

/* Debug Log Box (Premium Dark) */
#debug-log {
    background: #000;
    color: #00ff00;
    padding: 20px;
    border-radius: 1.5rem;
    font-size: 0.85rem;
    font-family: 'Fira Code', 'Consolas', monospace;
    box-shadow: inset 0 0 15px rgba(255, 255, 255, 0.05);
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-section h1,
.hero-section p {
    animation: slideUp 1s ease-out;
}