/* ============================================
   MEŞHUR KANATÇI MİÇO - ÖZEL TASARIM
   Renk Paleti: #F2A007, #734002, #402401, #D97A07, #BF4904
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700;800&family=Roboto:wght@400;500;700&display=swap');

:root {
    --primary-gold: #F2A007;
    --primary-orange: #D97A07;
    --dark-orange: #BF4904;
    --dark-brown: #734002;
    --very-dark-brown: #402401;
    --white: #FFFFFF;
    --light-bg: #FFF8F0;
    --text-dark: #2C1810;
    --text-light: #5C3D2E;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    padding-top: 0;
    padding-bottom: 0;
    font-family: 'Roboto', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--light-bg);
    color: var(--text-dark);
    line-height: 1.7;
}

/* ============================================
   NAVBAR - Modern ve Şık
   ============================================ */
.navbar {
    background: linear-gradient(135deg, #D97A07 0%, #F2A007 100%) !important;
    border: none !important;
    box-shadow: 0 4px 15px rgba(217, 122, 7, 0.3);
    padding: 15px 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    font-family: 'Poppins', sans-serif;
    font-size: 28px !important;
    font-weight: 800 !important;
    color: var(--primary-gold) !important;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 5px 20px !important;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    height: auto !important;
}

.navbar-brand img {
    height: 80px !important;
    width: auto !important;
    max-width: 100% !important;
}

.navbar-brand:hover {
    color: var(--primary-orange) !important;
    transform: scale(1.05);
}

.navbar-nav > li > a {
    color: var(--very-dark-brown) !important;
    font-weight: 600;
    font-size: 16px;
    padding: 15px 20px !important;
    margin: 0 5px;
    border-radius: 5px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.navbar-nav > li > a::before {
    content: none !important;
    display: none !important;
}

.navbar-nav > li::before {
    content: none !important;
    display: none !important;
}

.navbar-nav > li > a:hover {
    background: rgba(64, 36, 1, 0.1) !important;
    color: var(--very-dark-brown) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(64, 36, 1, 0.2);
}

.navbar-toggle {
    border-color: var(--very-dark-brown) !important;
}

.navbar-toggle .icon-bar {
    background-color: var(--very-dark-brown) !important;
}

/* ============================================
   HERO SECTION - Etkileyici Banner
   ============================================ */
.hero-section {
    background: linear-gradient(135deg, var(--very-dark-brown) 0%, var(--dark-brown) 50%, var(--dark-orange) 100%);
    color: var(--white);
    padding: 100px 0;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(242,160,7,0.1)"/></svg>') repeat;
    opacity: 0.3;
}

.hero-section h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 4.5em;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 3px 3px 10px rgba(0,0,0,0.5);
    color: var(--primary-gold);
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease;
}

.hero-section p {
    font-size: 1.8em;
    font-weight: 300;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
    animation: fadeInUp 1.2s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   BUTTONS - Modern ve Çekici
   ============================================ */
.btn-primary {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-orange) 100%);
    border: none;
    color: var(--very-dark-brown);
    font-weight: 700;
    font-size: 16px;
    padding: 15px 40px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(242, 160, 7, 0.4);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--dark-orange) 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(242, 160, 7, 0.6);
    color: var(--white);
}

.btn-lg {
    padding: 18px 50px;
    font-size: 18px;
}

/* ============================================
   CARDS - Modern Kartlar
   ============================================ */
.info-card {
    background: var(--white);
    border-radius: 15px;
    padding: 40px 30px;
    margin: 20px;
    box-shadow: 0 8px 30px rgba(64, 36, 1, 0.15);
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    text-align: center;
    transition: all 0.4s ease;
    border-top: 4px solid var(--primary-gold);
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(242, 160, 7, 0.1), transparent);
    transition: left 0.5s;
}

.info-card:hover::before {
    left: 100%;
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(242, 160, 7, 0.3);
    border-top-color: var(--primary-orange);
}

.info-card h3 {
    color: var(--dark-brown);
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 24px;
    position: relative;
}

.info-card h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-gold), var(--primary-orange));
    border-radius: 2px;
}

.info-card p {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.8;
}

/* ============================================
   FORMS - Modern Form Tasarımı
   ============================================ */
.form-control {
    border-radius: 8px;
    border: 2px solid #E0D5C7;
    padding: 15px 20px;
    margin-bottom: 20px;
    font-size: 16px;
    transition: all 0.3s ease;
    background-color: var(--white);
}

.form-control:focus {
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 3px rgba(242, 160, 7, 0.2);
    outline: none;
}

select.form-control {
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23402401' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 45px;
    background-color: #FFFFFF !important;
    color: #2C1810 !important;
    -webkit-text-fill-color: #2C1810 !important;
}

select.form-control option {
    color: #2C1810 !important;
    background-color: #FFFFFF !important;
    -webkit-text-fill-color: #2C1810 !important;
}

select.form-control option:first-child {
    color: #999 !important;
    -webkit-text-fill-color: #999 !important;
}

select.form-control option:checked,
select.form-control option[selected] {
    color: #2C1810 !important;
    background-color: #FFFFFF !important;
    -webkit-text-fill-color: #2C1810 !important;
    font-weight: 600;
}

/* ADRES DROPDOWN'LARI İÇİN CSS - CHROME RENDER BUG FIX */
select.form-control.adres-dropdown {
    appearance: auto !important;
    -webkit-appearance: auto !important;
    -moz-appearance: auto !important;
    color: transparent !important;
    -webkit-text-fill-color: transparent !important;
    background: transparent !important;
    position: relative;
    z-index: 2;
}

/* Dropdown display span - Chrome render bug fix */
.dropdown-display {
    position: absolute;
    left: 0;
    top: 0;
    right: 30px;
    bottom: 0;
    padding: 6px 12px;
    padding-right: 30px;
    pointer-events: none;
    z-index: 1;
    color: #999;
    line-height: 1.42857143;
    background-color: #FFFFFF;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: flex;
    align-items: center;
}

.form-group > div[style*="position: relative"] {
    position: relative;
}

/* Dropdown açıldığında span'ı gizle */
select.form-control.adres-dropdown:focus ~ .dropdown-display,
select.form-control.adres-dropdown:active ~ .dropdown-display {
    opacity: 0;
    pointer-events: none;
}

/* Seçili değer VARSA - TÜM YÖNTEMLERLE */
select.form-control.adres-dropdown.has-selection,
select.form-control.adres-dropdown[data-has-value="true"],
select.form-control.adres-dropdown:not(.no-selection) {
    color: #2C1810 !important;
    -webkit-text-fill-color: #2C1810 !important;
}

/* Seçili değer YOKSA - SADECE NO-SELECTION CLASS'I İLE */
select.form-control.adres-dropdown.no-selection {
    color: #999 !important;
    -webkit-text-fill-color: #999 !important;
}

/* Option'lar için */
select.form-control.adres-dropdown option {
    color: #2C1810 !important;
    background-color: #FFFFFF !important;
}

select.form-control.adres-dropdown option:first-child {
    color: #999 !important;
}

select.form-control.adres-dropdown option:checked,
select.form-control.adres-dropdown option[selected] {
    color: #2C1810 !important;
    background: #f7f3ef !important;
}

select option:checked {
    background: #f7f3ef !important;
    color: #2C1810 !important;
}

select.form-control:disabled {
    background-color: #f5f5f5 !important;
    cursor: not-allowed !important;
    opacity: 0.7;
}

select.form-control:disabled option {
    color: #999 !important;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
    color: var(--dark-brown);
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.panel {
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(64, 36, 1, 0.15);
    border: none;
    overflow: hidden;
}

.panel-default {
    background-color: var(--white);
}

.panel-body {
    padding: 40px;
    background: linear-gradient(135deg, #FFF8F0 0%, var(--white) 100%);
}

/* ============================================
   ALERTS - Modern Uyarılar
   ============================================ */
.alert {
    padding: 20px 25px;
    margin-bottom: 25px;
    border: none;
    border-radius: 10px;
    font-weight: 500;
    border-left: 5px solid;
}

.alert-success {
    color: #155724;
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    border-left-color: #28a745;
}

.alert-danger {
    color: #721c24;
    background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
    border-left-color: #dc3545;
}

/* ============================================
   TYPOGRAPHY - Modern Tipografi
   ============================================ */
h1 {
    color: var(--very-dark-brown);
    margin-bottom: 25px;
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 3em;
    line-height: 1.2;
}

h2 {
    color: var(--dark-brown);
    margin-top: 40px;
    margin-bottom: 25px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 2.5em;
    position: relative;
    padding-bottom: 15px;
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-gold), var(--primary-orange));
    border-radius: 2px;
}

h3 {
    color: var(--dark-brown);
    margin-top: 30px;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.8em;
}

p {
    line-height: 1.8;
    color: var(--text-light);
    font-size: 16px;
    margin-bottom: 15px;
}

/* ============================================
   MAP - Harita Tasarımı
   ============================================ */
.banner-map {
    width: 100%;
    height: 600px;
    margin: 40px 0;
    border: 4px solid var(--primary-gold);
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(64, 36, 1, 0.2);
    overflow: hidden;
}

/* ============================================
   FOOTER - Modern Footer
   ============================================ */
footer {
    margin-top: 60px;
    padding: 0;
    background: var(--very-dark-brown);
    color: var(--white);
    text-align: center;
}

footer a {
    color: var(--primary-gold);
    transition: all 0.3s ease;
}

footer a:hover {
    color: var(--primary-orange);
    text-decoration: none;
}

/* ============================================
   LINKS - Modern Linkler
   ============================================ */
a {
    color: var(--primary-orange);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

a:hover {
    color: var(--primary-gold);
    text-decoration: none;
}

/* ============================================
   LISTS - Modern Listeler
   ============================================ */
ul {
    padding-left: 25px;
    list-style: none;
}

ul li {
    margin-bottom: 12px;
    padding-left: 0;
    position: relative;
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.8;
}

ul li::before {
    content: '';
    display: none;
}

/* ============================================
   CONTAINER & LAYOUT
   ============================================ */
.container {
    max-width: 1200px;
    padding: 0 20px;
}

.body-content {
    min-height: calc(100vh - 200px);
    padding: 40px 0;
}

.row {
    margin-left: -15px;
    margin-right: -15px;
}

.col-md-6, .col-md-8, .col-md-4, .col-md-12 {
    padding-left: 15px;
    padding-right: 15px;
}

.col-md-offset-2 {
    margin-left: 16.66666667%;
}

/* ============================================
   SPECIAL SECTIONS
   ============================================ */
.info-cards {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin: 60px 0;
    padding: 20px 0;
}

.process-step {
    text-align: center;
    padding: 30px 20px;
    position: relative;
}

.process-step .step-number {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-orange) 100%);
    color: var(--very-dark-brown);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 20px;
    box-shadow: 0 6px 20px rgba(242, 160, 7, 0.4);
    transition: all 0.3s ease;
}

.process-step:hover .step-number {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(242, 160, 7, 0.6);
}

.process-step h4 {
    color: var(--dark-brown);
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.process-step p {
    color: var(--text-light);
    font-size: 15px;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Tablet ve Küçük Ekranlar (768px ve altı) */
@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0;
    }
    
    .hero-section h1 {
        font-size: 2.5em;
    }
    
    .hero-section p {
        font-size: 1.3em;
    }
    
    .info-cards {
        flex-direction: column;
        align-items: center;
    }
    
    .info-card {
        max-width: 100%;
        margin: 15px 0;
        padding: 30px 20px;
    }
    
    h1 {
        font-size: 2em;
    }
    
    h2 {
        font-size: 1.8em;
    }
    
    h3 {
        font-size: 1.5em;
    }
    
    .banner-map {
        height: 400px;
        margin: 20px 0;
    }
    
    .navbar-brand {
        font-size: 20px !important;
        padding: 5px 10px !important;
    }
    
    .navbar-brand img {
        height: 60px !important;
    }
    
    .navbar-nav > li > a {
        font-size: 14px;
        padding: 12px 15px !important;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .body-content {
        padding: 20px 0;
    }
    
    .panel-body {
        padding: 25px 20px;
    }
    
    .form-control {
        padding: 12px 15px;
        font-size: 15px;
    }
    
    .btn-primary {
        padding: 12px 30px;
        font-size: 14px;
        width: 100%;
    }
    
    .btn-lg {
        padding: 15px 35px;
        font-size: 16px;
        width: 100%;
    }
    
    footer {
        padding: 30px 0;
    }
    
    footer p {
        font-size: 14px;
    }
    
    footer img {
        height: 50px !important;
    }
    
    .col-md-offset-2 {
        margin-left: 0;
    }
    
    .col-md-8.col-md-offset-2 {
        width: 100%;
        padding-left: 15px;
        padding-right: 15px;
    }
}

/* Telefon (576px ve altı) */
@media (max-width: 576px) {
    .hero-section {
        padding: 40px 0;
    }
    
    .hero-section h1 {
        font-size: 1.8em;
        margin-bottom: 15px;
    }
    
    .hero-section p {
        font-size: 1.1em;
        margin-bottom: 20px;
    }
    
    .navbar {
        padding: 10px 0;
    }
    
    .navbar-brand {
        font-size: 16px !important;
        padding: 5px !important;
    }
    
    .navbar-brand img {
        height: 50px !important;
    }
    
    .navbar-toggle {
        margin-top: 8px;
        margin-bottom: 8px;
    }
    
    .navbar-nav {
        margin-top: 10px;
    }
    
    .navbar-nav > li > a {
        font-size: 13px;
        padding: 10px 15px !important;
        margin: 2px 0;
    }
    
    h1 {
        font-size: 1.6em;
        margin-bottom: 15px;
    }
    
    h2 {
        font-size: 1.4em;
        margin-top: 25px;
        margin-bottom: 15px;
    }
    
    h3 {
        font-size: 1.3em;
        margin-top: 20px;
        margin-bottom: 15px;
    }
    
    p {
        font-size: 14px;
        margin-bottom: 12px;
    }
    
    .info-card {
        padding: 20px 15px;
        margin: 10px 0;
    }
    
    .info-card h3 {
        font-size: 1.2em;
    }
    
    .info-card p {
        font-size: 13px;
    }
    
    .banner-map {
        height: 300px;
        border-width: 2px;
        margin: 15px 0;
    }
    
    .container {
        padding: 0 10px;
    }
    
    .body-content {
        padding: 15px 0;
    }
    
    .panel-body {
        padding: 20px 15px;
    }
    
    .form-group {
        margin-bottom: 15px;
    }
    
    .form-group label {
        font-size: 13px;
        margin-bottom: 5px;
    }
    
    .form-control {
        padding: 10px 12px;
        font-size: 14px;
        margin-bottom: 15px;
    }
    
    select.form-control {
        padding-right: 35px;
        background-position: right 10px center;
    }
    
    .btn-primary {
        padding: 12px 25px;
        font-size: 13px;
        width: 100%;
        margin-top: 10px;
    }
    
    .btn-lg {
        padding: 12px 30px;
        font-size: 15px;
        width: 100%;
    }
    
    .alert {
        padding: 15px;
        font-size: 13px;
        margin-bottom: 15px;
    }
    
    footer {
        padding: 25px 0;
    }
    
    footer .container {
        padding: 0 15px;
    }
    
    footer p {
        font-size: 12px;
        margin-bottom: 10px;
    }
    
    footer img {
        height: 40px !important;
        margin-bottom: 15px;
    }
    
    .process-step {
        padding: 20px 10px;
    }
    
    .process-step .step-number {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .process-step h4 {
        font-size: 1.1em;
    }
    
    .process-step p {
        font-size: 12px;
    }
    
    .col-md-6, .col-md-8, .col-md-4, .col-md-12 {
        padding-left: 10px;
        padding-right: 10px;
    }
    
    .row {
        margin-left: -10px;
        margin-right: -10px;
    }
}

/* Büyük Telefon ve Küçük Tablet (576px - 768px) */
@media (min-width: 577px) and (max-width: 768px) {
    .hero-section {
        padding: 70px 0;
    }
    
    .hero-section h1 {
        font-size: 2.2em;
    }
    
    .hero-section p {
        font-size: 1.2em;
    }
    
    .banner-map {
        height: 450px;
    }
    
    .info-card {
        max-width: 90%;
    }
}

/* Tablet (768px - 992px) */
@media (min-width: 769px) and (max-width: 992px) {
    .hero-section {
        padding: 80px 0;
    }
    
    .hero-section h1 {
        font-size: 3em;
    }
    
    .hero-section p {
        font-size: 1.5em;
    }
    
    .info-card {
        max-width: 45%;
        min-width: 300px;
    }
    
    .banner-map {
        height: 500px;
    }
    
    .navbar-brand img {
        height: 70px !important;
    }
}

/* Büyük Ekranlar (1200px ve üzeri) */
@media (min-width: 1200px) {
    .container {
        max-width: 1200px;
    }
    
    .info-card {
        max-width: 350px;
    }
}

/* ============================================
   ANIMATIONS & EFFECTS
   ============================================ */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.pulse-animation {
    animation: pulse 2s infinite;
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Selection color */
::selection {
    background-color: var(--primary-gold);
    color: var(--very-dark-brown);
}

::-moz-selection {
    background-color: var(--primary-gold);
    color: var(--very-dark-brown);
}
