/* Genel Stil Ayarları */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #000000;
    color: #e5e5e5;
    line-height: 1.6;
}

/* Navbar Stilleri */
.navbar {
    background-color: #1a1a1a;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #C9A961;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(212, 175, 55, 0.2);
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #D4AF37;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: 5px;
}

.logo:hover {
    color: #E6C200;
    transition: color 0.3s ease;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1rem;
    align-items: center;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.1rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
    position: relative;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #C9A961, #D4AF37);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #D4AF37;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(201, 169, 97, 0.1) 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.2);
}

.nav-link:hover::before {
    width: 80%;
}

/* Dropdown Menü */
.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 0px);
    left: 0;
    background-color: #252525;
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.6);
    border: 1px solid #C9A961;
    border-radius: 5px;
    margin-top: 0;
    padding-top: 0;
    list-style: none;
    z-index: 1001;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-item {
    padding: 0;
}

.dropdown-item:first-child .dropdown-link {
    padding-top: 1rem;
}

.dropdown-link {
    color: #e5e5e5;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    display: block;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(201, 169, 97, 0.15);
    position: relative;
}

.dropdown-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #C9A961, #D4AF37);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.dropdown-link:last-child {
    border-bottom: none;
}

.dropdown-link:hover {
    background: linear-gradient(90deg, rgba(212, 175, 55, 0.2) 0%, rgba(212, 175, 55, 0.1) 100%);
    color: #D4AF37;
    padding-left: 2rem;
    transform: translateX(5px);
}

.dropdown-link:hover::before {
    transform: scaleY(1);
}

/* Ana İçerik */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.hero-section {
    position: relative;
    text-align: center;
    padding: 0;
    border-radius: 20px;
    margin: 3rem 0;
    border: 2px solid rgba(201, 169, 97, 0.3);
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6),
                0 0 0 1px rgba(212, 175, 55, 0.1) inset,
                0 4px 24px rgba(212, 175, 55, 0.15);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(0, 0, 0, 0.8) 100%);
}

.hero-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    border-radius: 18px;
    overflow: hidden;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.85) contrast(1.1) saturate(1.2);
    transform: scale(1.02);
    transition: transform 0.5s ease, filter 0.5s ease;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at center, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%),
        linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.8) 50%, rgba(0, 0, 0, 0.75) 100%),
        linear-gradient(180deg, rgba(212, 175, 55, 0.05) 0%, transparent 30%, transparent 70%, rgba(0, 0, 0, 0.9) 100%);
    z-index: 2;
    backdrop-filter: blur(0.5px);
}

.hero-content {
    position: relative;
    z-index: 3;
    padding: 5rem 2rem;
    width: 100%;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content h1 {
    font-size: 3.5rem;
    color: #D4AF37;
    margin-bottom: 1.5rem;
    text-shadow: 
        2px 2px 8px rgba(0, 0, 0, 0.9),
        0 0 20px rgba(212, 175, 55, 0.3),
        0 0 40px rgba(212, 175, 55, 0.1);
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 1.2;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-content .slogan {
    font-size: 1.6rem;
    color: #C9A961;
    margin-bottom: 2rem;
    font-weight: 600;
    text-shadow: 
        1px 1px 4px rgba(0, 0, 0, 0.8),
        0 0 15px rgba(201, 169, 97, 0.2);
    letter-spacing: 0.5px;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-content .hero-description {
    font-size: 1.15rem;
    color: #f0f0f0;
    margin-bottom: 0;
    line-height: 1.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 
        1px 1px 3px rgba(0, 0, 0, 0.9),
        0 0 10px rgba(0, 0, 0, 0.5);
    padding: 2rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.15);
    backdrop-filter: blur(10px);
    animation: fadeInUp 1s ease-out 0.6s both;
    transition: all 0.3s ease;
}

.hero-section:hover .hero-video {
    transform: scale(1.05);
    filter: brightness(0.9) contrast(1.15) saturate(1.3);
}

.hero-section:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.7),
                0 0 0 1px rgba(212, 175, 55, 0.2) inset,
                0 6px 30px rgba(212, 175, 55, 0.25);
    border-color: rgba(201, 169, 97, 0.4);
}

.hero-section:hover .hero-content .hero-description {
    background: rgba(0, 0, 0, 0.4);
    border-color: rgba(212, 175, 55, 0.25);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.1);
}

/* Sayfa Hero Section (Text Only) */
.page-hero-section {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(0, 0, 0, 0.98) 100%);
    padding: 5rem 2rem;
    text-align: center;
    margin-bottom: 3rem;
    border-bottom: 3px solid #C9A961;
}

.page-hero-content-text h1 {
    font-size: 3.5rem;
    color: #D4AF37;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #C9A961;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Sayfa Hero Image */
.page-hero-image {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    margin-bottom: 3rem;
}

.page-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.8) 100%);
    z-index: 1;
}

.page-hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
    width: 100%;
    padding: 0 2rem;
}

.page-hero-content h1 {
    font-size: 3rem;
    color: #D4AF37;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.9);
    margin: 0;
    font-weight: 600;
    letter-spacing: 1px;
}

/* Sayfa İçerik Stilleri */
.page-content {
    padding: 2rem 0;
}

.page-title {
    font-size: 2.5rem;
    color: #D4AF37;
    margin-bottom: 2rem;
    text-align: center;
    border-bottom: 2px solid #C9A961;
    padding-bottom: 1rem;
}

.content-section {
    background: linear-gradient(135deg, #1f1f1f 0%, #252525 100%);
    padding: 2.5rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    border: 1px solid rgba(201, 169, 97, 0.2);
    border-left: 4px solid #C9A961;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
    overflow-y: visible;
}

.content-section:hover {
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.15);
    transform: translateY(-2px);
}

.content-section h2 {
    color: #D4AF37;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.content-section h2::before {
    content: '';
    width: 4px;
    height: 24px;
    background: linear-gradient(180deg, #C9A961, #D4AF37);
    border-radius: 2px;
}

.content-section p {
    color: #d0d0d0;
    margin-bottom: 1rem;
    line-height: 1.9;
    font-size: 1.05rem;
}

.content-section strong {
    color: #D4AF37;
    font-weight: 600;
}

/* İletişim Sayfası Özel Stiller */
.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    margin-bottom: 3rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 1200px) {
    .contact-info {
        grid-template-columns: repeat(3, 1fr);
    }
}

.contact-card-phone {
    display: flex;
    flex-direction: column;
}

.contact-card-phone h3 {
    margin-bottom: 0.5rem;
}

.contact-card-phone a {
    display: block;
    transition: all 0.3s ease;
}

.contact-card-phone a:hover {
    color: #E6C200 !important;
    transform: translateX(5px);
}

.contact-card-hours {
    display: flex;
    flex-direction: column;
}

.working-hours-compact {
    margin-top: 1rem;
}

.working-hours-item-compact {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(201, 169, 97, 0.1);
}

.working-hours-item-compact:last-child {
    border-bottom: none;
}

.working-hours-day-compact {
    color: #d0d0d0;
    font-weight: 500;
    font-size: 0.9rem;
}

.working-hours-time-compact {
    color: #D4AF37;
    font-weight: 600;
    font-size: 0.9rem;
}

.working-hours-closed-compact {
    color: #b0b0b0;
    font-size: 0.9rem;
    font-style: italic;
}

/* Harita Container - Tek Başına */
.contact-map-container {
    width: 100%;
    max-width: 100%;
    margin-top: 3rem;
    margin-bottom: 3rem;
}

.contact-card {
    background: linear-gradient(135deg, #1f1f1f 0%, #252525 100%);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(201, 169, 97, 0.2);
    border-left: 4px solid #C9A961;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.2);
    border-color: rgba(201, 169, 97, 0.4);
}

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #D4AF37;
}

.contact-card h3 {
    color: #D4AF37;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.contact-card p {
    color: #d0d0d0;
    margin: 0.5rem 0;
    line-height: 1.8;
}

.contact-card a {
    color: #C9A961;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-card a:hover {
    color: #D4AF37;
}

/* İletişim Formu Stilleri */
.contact-form {
    margin-top: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: #D4AF37;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(201, 169, 97, 0.2);
    border-radius: 8px;
    color: #e5e5e5;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #C9A961;
    background: rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #888;
}

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background: #252525;
    color: #e5e5e5;
    padding: 0.5rem;
}

.form-group textarea {
    resize: vertical;
    min-height: 130px;
}

.contact-form .form-group:last-of-type {
    flex: 1;
    display: flex;
    flex-direction: column;
    margin-bottom: 0;
}

.contact-form .form-group:last-of-type textarea {
    flex: 1;
    min-height: 150px;
    max-height: 220px;
}

.contact-submit-btn {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #C9A961 0%, #D4AF37 100%);
    color: #000;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1rem;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

.contact-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
    background: linear-gradient(135deg, #D4AF37 0%, #E6C200 100%);
}

.contact-submit-btn:active {
    transform: translateY(0);
}

/* Harita Container */
.map-container {
    margin-top: 0.75rem;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(201, 169, 97, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    display: flex;
    width: 100%;
    max-width: 100%;
    position: relative;
    box-sizing: border-box;
    padding: 0;
    margin-left: auto;
    margin-right: auto;
}

.map-container iframe {
    width: 100% !important;
    height: 100%;
    min-height: 240px;
    border: none;
    display: block;
    border-radius: 10px;
    max-width: 100% !important;
    box-sizing: border-box;
    overflow: hidden;
}


/* Sosyal Medya Linkleri */
.social-links-container {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 2rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(201, 169, 97, 0.05) 100%);
    padding: 1rem 2rem;
    border-radius: 10px;
    border: 1px solid rgba(201, 169, 97, 0.2);
    text-decoration: none;
    color: #D4AF37;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.25);
    border-color: rgba(201, 169, 97, 0.4);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(201, 169, 97, 0.1) 100%);
}

.social-icon {
    font-size: 1.2rem;
    margin-right: 0.5rem;
}

/* Harita Container - Tek Başına (Eski contact-map-hours-container yerine) */
.contact-map-container {
    width: 100%;
    max-width: 100%;
    margin-top: 3rem;
    margin-bottom: 3rem;
    box-sizing: border-box;
}

/* Profesyonel Harita Bölümü */
.contact-map-section-enhanced {
    background: linear-gradient(135deg, #1f1f1f 0%, #252525 100%);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid rgba(201, 169, 97, 0.2);
    border-left: 4px solid #C9A961;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(212, 175, 55, 0.1) inset;
    transition: all 0.3s ease;
    overflow: hidden;
}

.contact-map-section-enhanced:hover {
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.2), 0 0 0 1px rgba(212, 175, 55, 0.15) inset;
    transform: translateY(-3px);
}

.map-header {
    margin-bottom: 1.5rem;
}

.map-header h2 {
    color: #D4AF37;
    margin-bottom: 0.75rem;
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.map-description {
    color: #b0b0b0;
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

.map-container-enhanced {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid rgba(201, 169, 97, 0.3);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5), inset 0 0 30px rgba(212, 175, 55, 0.05);
    transition: all 0.3s ease;
    background: #000;
}

.map-container-enhanced:hover {
    border-color: rgba(201, 169, 97, 0.5);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.15), inset 0 0 40px rgba(212, 175, 55, 0.08);
}

.map-container-enhanced iframe {
    width: 100%;
    height: 450px;
    border: none;
    display: block;
    border-radius: 10px;
}

.map-overlay-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.7) 70%, transparent 100%);
    padding: 1.5rem;
    padding-top: 2rem;
    border-radius: 0 0 10px 10px;
}

.map-info-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #e5e5e5;
    font-size: 0.9rem;
}

.map-info-icon {
    font-size: 1.2rem;
    color: #D4AF37;
}

.map-info-text {
    flex: 1;
    line-height: 1.5;
}

/* Profesyonel Çalışma Saatleri Bölümü */
.contact-working-hours-section-enhanced {
    background: linear-gradient(135deg, #1f1f1f 0%, #252525 100%);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid rgba(201, 169, 97, 0.2);
    border-left: 4px solid #C9A961;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(212, 175, 55, 0.1) inset;
    transition: all 0.3s ease;
}

.contact-working-hours-section-enhanced:hover {
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.2), 0 0 0 1px rgba(212, 175, 55, 0.15) inset;
    transform: translateY(-3px);
}

.contact-working-hours-section-enhanced h2 {
    color: #D4AF37;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.working-hours-enhanced {
    margin-top: 1rem;
    margin-bottom: 1.5rem;
}

.working-hours-item-enhanced {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1rem;
    margin-bottom: 0.75rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, rgba(201, 169, 97, 0.04) 100%);
    border: 1px solid rgba(201, 169, 97, 0.15);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.working-hours-item-enhanced:hover {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.12) 0%, rgba(201, 169, 97, 0.08) 100%);
    border-color: rgba(201, 169, 97, 0.3);
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.1);
}

.working-hours-day-wrapper {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.working-hours-day-icon {
    font-size: 1.1rem;
    color: #D4AF37;
}

.working-hours-day {
    color: #d0d0d0;
    font-weight: 600;
    font-size: 1rem;
}

.working-hours-time {
    color: #D4AF37;
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: 0.5px;
}

.working-hours-closed {
    color: #b0b0b0;
    font-weight: 600;
    font-size: 1rem;
    font-style: italic;
}

.working-hours-note {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(201, 169, 97, 0.2);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(201, 169, 97, 0.02) 100%);
    padding: 1.25rem;
    border-radius: 10px;
}

.note-icon {
    font-size: 1.2rem;
    color: #D4AF37;
    flex-shrink: 0;
}

.working-hours-note p {
    color: #b0b0b0;
    font-size: 0.9rem;
    line-height: 1.7;
    margin: 0;
}

/* İletişim Form Container (Eski - Artık Kullanılmıyor) */
.contact-form-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
    margin-bottom: 3rem;
    align-items: stretch;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.contact-form-container > div {
    display: flex;
    flex-direction: column;
}

.contact-form-section {
    display: flex;
    flex-direction: column;
    min-height: 680px;
    height: 100%;
}

.contact-form {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.contact-right-column {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    min-height: 680px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.contact-map-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 300px;
    max-height: 380px;
    overflow-x: hidden;
    overflow-y: visible;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.contact-map-section.content-section {
    overflow: hidden;
}

.contact-map-section > h2 {
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 0.75rem;
}

.contact-map-section > p {
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
    margin-left: 0;
    margin-right: 0;
    word-wrap: break-word;
}

.contact-map-section .map-container {
    flex: 1;
    min-height: 260px;
    max-height: 340px;
    width: calc(100% - 0px);
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
    margin-left: 0;
    margin-right: 0;
    padding: 0;
}

.contact-working-hours-section {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
}

.contact-working-hours-section h2 {
    margin-bottom: 1.5rem;
}

.contact-working-hours-section > p {
    margin-top: 1.5rem !important;
    padding-top: 1.5rem !important;
}

/* Çalışma Saatleri */
.working-hours {
    margin-top: 1.5rem;
    margin-bottom: 0;
}

.working-hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(201, 169, 97, 0.1);
}

.working-hours-item:last-child {
    border-bottom: none;
}

.working-hours-day {
    color: #d0d0d0;
    font-weight: 500;
    font-size: 1rem;
}

.working-hours-time {
    color: #D4AF37;
    font-weight: 600;
    font-size: 1rem;
}

.working-hours-closed {
    color: #b0b0b0;
    font-size: 1rem;
}

/* Değerler Listesi */
.values-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.values-list li {
    padding: 1rem;
    margin-bottom: 1rem;
    background: rgba(212, 175, 55, 0.05);
    border-left: 3px solid #C9A961;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.values-list li:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateX(5px);
}

.values-list strong {
    color: #D4AF37;
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

/* Hizmetler Bölümü */
.services-section {
    padding: 3rem 0;
    margin-top: 2rem;
}

.services-title {
    font-size: 2.5rem;
    color: #D4AF37;
    text-align: center;
    margin-bottom: 0.5rem;
}

.services-subtitle {
    text-align: center;
    color: #b0b0b0;
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.service-card {
    background: linear-gradient(135deg, rgba(31, 31, 31, 0.95) 0%, rgba(37, 37, 37, 0.95) 100%);
    border: 1px solid rgba(201, 169, 97, 0.12);
    border-radius: 20px;
    padding: 2rem 2rem;
    text-decoration: none;
    color: inherit;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2), 0 1px 4px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.03) 0%, rgba(201, 169, 97, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 0;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #C9A961, transparent);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.5s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.15), 0 4px 12px rgba(0, 0, 0, 0.3);
    border-color: rgba(201, 169, 97, 0.3);
    background: linear-gradient(135deg, rgba(37, 37, 37, 0.98) 0%, rgba(42, 42, 42, 0.98) 100%);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover::after {
    transform: scaleX(1);
}

.service-icon {
    text-align: center;
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 16px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.service-card:hover .service-icon {
    background: rgba(212, 175, 55, 0.1);
    transform: scale(1.03);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.1);
}

.service-icon img {
    max-width: 100px;
    max-height: 100px;
    width: auto;
    height: auto;
    border-radius: 12px;
    object-fit: contain;
    filter: brightness(1.1);
    transition: filter 0.4s ease;
}

.service-card:hover .service-icon img {
    filter: brightness(1.2);
}

.service-card h3 {
    color: #D4AF37;
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
    text-align: center;
    line-height: 1.4;
    letter-spacing: 0.2px;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.service-card:hover h3 {
    color: #E6C200;
    letter-spacing: 0.3px;
}

.service-card p {
    color: #d0d0d0;
    line-height: 1.6;
    margin-bottom: 1rem;
    text-align: center;
    font-size: 0.9rem;
    transition: color 0.4s ease;
    position: relative;
    z-index: 1;
    font-weight: 300;
}

.service-card:hover p {
    color: #e0e0e0;
}

.service-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-align: center;
    color: #C9A961;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0.6rem 1.2rem;
    border-radius: 12px;
    background: rgba(201, 169, 97, 0.08);
    margin: 0 auto;
    width: fit-content;
    position: relative;
    z-index: 1;
    border: 1px solid rgba(201, 169, 97, 0.15);
}

.service-card:hover .service-link {
    color: #D4AF37;
    background: rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.15);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #000000 0%, #0a0a0a 100%);
    border-top: 3px solid #C9A961;
    margin-top: 5rem;
    padding: 0;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
}

.footer-section h3 {
    color: #D4AF37;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-section h4 {
    color: #D4AF37;
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-logo-img {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    object-fit: contain;
}

.footer-description {
    color: #b0b0b0;
    line-height: 1.7;
    font-size: 0.9rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #d0d0d0;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-links a:hover {
    color: #D4AF37;
    transform: translateX(5px);
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: #d0d0d0;
    font-size: 0.85rem;
    line-height: 1.5;
}

.footer-contact li span:not(.footer-icon) {
    word-break: break-word;
    flex: 1;
    min-width: 0;
}

.footer-icon {
    font-size: 1.2rem;
    color: #D4AF37;
    flex-shrink: 0;
}

.footer-contact a {
    color: #d0d0d0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: #D4AF37;
}

.footer-bottom {
    background-color: #000000;
    border-top: 1px solid rgba(201, 169, 97, 0.2);
    padding: 1.5rem 2rem;
    text-align: center;
}

.footer-bottom p {
    color: #b0b0b0;
    margin: 0;
    font-size: 0.9rem;
}

/* Sabit İletişim Butonları */
.fixed-contact-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
    pointer-events: none;
}

.fixed-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3), 0 0 0 2px rgba(255, 255, 255, 0.1) inset;
    transition: all 0.3s ease;
    pointer-events: auto;
    position: relative;
    overflow: hidden;
}

.fixed-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.fixed-btn:hover::before {
    opacity: 1;
}

.fixed-btn-icon {
    font-size: 1.8rem;
    z-index: 1;
    position: relative;
    transition: transform 0.3s ease;
}

.fixed-btn:hover .fixed-btn-icon {
    transform: scale(1.2);
}

.fixed-btn-phone {
    background: linear-gradient(135deg, #D4AF37 0%, #C9A961 100%);
    border: 2px solid rgba(212, 175, 55, 0.3);
}

.fixed-btn-phone::before {
    background: linear-gradient(135deg, #E6C200 0%, #D4AF37 100%);
}

.fixed-btn-phone:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4), 0 0 0 3px rgba(212, 175, 55, 0.2) inset;
}

.fixed-btn-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border: 2px solid rgba(37, 211, 102, 0.3);
}

.fixed-btn-whatsapp::before {
    background: linear-gradient(135deg, #128C7E 0%, #25D366 100%);
}

.fixed-btn-whatsapp:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4), 0 0 0 3px rgba(37, 211, 102, 0.2) inset;
}

.fixed-btn:active {
    transform: translateY(-2px) scale(1.05);
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        padding: 1rem;
    }
    
    .nav-menu {
        flex-direction: column;
        width: 100%;
        gap: 0.5rem;
    }
    
    .dropdown-menu {
        position: static;
        display: none;
        width: 100%;
    }
    
    .dropdown:hover .dropdown-menu {
        display: block;
    }
    
    .hero-section {
        min-height: 500px;
        border-radius: 15px;
        margin: 2rem 0;
        border-width: 1.5px;
        box-shadow: 0 6px 24px rgba(0, 0, 0, 0.5),
                    0 0 0 1px rgba(212, 175, 55, 0.1) inset,
                    0 3px 18px rgba(212, 175, 55, 0.12);
    }
    
    .hero-video-wrapper {
        border-radius: 13px;
    }
    
    .hero-content {
        padding: 3rem 1.5rem;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
        margin-bottom: 1rem;
        text-shadow: 
            1px 1px 6px rgba(0, 0, 0, 0.9),
            0 0 15px rgba(212, 175, 55, 0.25),
            0 0 30px rgba(212, 175, 55, 0.1);
    }
    
    .hero-content .slogan {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
        text-shadow: 
            1px 1px 3px rgba(0, 0, 0, 0.8),
            0 0 12px rgba(201, 169, 97, 0.15);
    }
    
    .hero-content .hero-description {
        font-size: 1rem;
        padding: 1.5rem;
        line-height: 1.7;
    }
    
    .hero-section:hover .hero-video {
        transform: scale(1.02);
    }
    
    .page-hero-section {
        padding: 3rem 1.5rem;
    }
    
    .page-hero-content-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .page-hero-image {
        height: 300px;
    }
    
    .page-hero-content h1 {
        font-size: 2rem;
    }
    
    .contact-info {
        grid-template-columns: 1fr !important;
        margin-bottom: 2rem;
        gap: 1.5rem;
        max-width: 100%;
    }
    
    .contact-info {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
        max-width: 100%;
    }
    
    .contact-map-container {
        margin-top: 2rem !important;
        margin-bottom: 2rem !important;
    }
    
    .map-container-enhanced iframe {
        height: 350px !important;
    }
    
    .contact-map-section-enhanced {
        padding: 1.5rem !important;
    }
    
    .map-header h2 {
        font-size: 1.5rem !important;
    }
    
    .working-hours-item-compact {
        padding: 0.5rem 0 !important;
    }
    
    .working-hours-day-compact,
    .working-hours-time-compact,
    .working-hours-closed-compact {
        font-size: 0.85rem !important;
    }
    
    .fixed-contact-buttons {
        bottom: 20px;
        right: 20px;
        gap: 12px;
    }
    
    .fixed-btn {
        width: 55px;
        height: 55px;
    }
    
    .fixed-btn-icon {
        font-size: 1.6rem;
    }
    
    .contact-form-container {
        grid-template-columns: 1fr !important;
        gap: 2rem;
        margin-top: 2rem;
        margin-bottom: 2rem;
    }
    
    .contact-form-section {
        min-height: auto !important;
    }
    
    .contact-right-column {
        min-height: auto !important;
    }
    
    .contact-map-section {
        min-height: 240px !important;
        max-height: none !important;
        overflow: hidden !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .contact-map-section .map-container {
        min-height: 220px !important;
        max-height: none !important;
        overflow: hidden !important;
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        margin-top: 0.5rem !important;
    }
    
    .map-container {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
        margin-top: 0.5rem !important;
    }
    
    .map-container iframe {
        min-height: 220px !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .contact-map-section > h2 {
        margin-bottom: 0.5rem !important;
    }
    
    .contact-form .form-group:last-of-type textarea {
        max-height: none !important;
        min-height: 120px;
    }
    
    .contact-submit-btn {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
    
    .social-link {
        padding: 0.875rem 1.5rem !important;
        font-size: 0.9rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 0.95rem;
        padding: 0.75rem 0.875rem;
    }
    
    .values-list li {
        padding: 0.75rem;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 1.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .footer-section h4 {
        white-space: normal;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    @media (min-width: 1024px) {
        .footer-container {
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
        }
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .services-title {
        font-size: 2rem;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
    }
    
    .service-card h3 {
        font-size: 1.2rem;
    }
    
    .service-icon img {
        max-width: 80px;
        max-height: 80px;
    }
}

