@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700;800&family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Inter:wght@400;500;600&display=swap');

:root {
    /* Grand Luxury Palette */
    --primary-color: #020617; /* Slate 950 - Ultra Dark */
    --secondary-color: #0f172a; /* Slate 900 */
    --accent-color: #fbbf24; /* Amber 400 - Professional Gold */
    --accent-glow: rgba(251, 191, 36, 0.3);
    --white: #ffffff;
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --border-color: rgba(255, 255, 255, 0.08);
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.05);
    
    /* Effects & Spacing */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 32px;
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 25px 60px -15px rgba(0, 0, 0, 0.7);
    --transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    --header-height: 80px;
    --container-max: 1400px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    background-color: var(--primary-color);
    line-height: 1.7;
}

h1 { font-size: clamp(2.5rem, 8vw, 5rem); line-height: 1.1; font-weight: 800; }
h2 { font-size: clamp(2rem, 5vw, 3.5rem); line-height: 1.2; font-weight: 700; }
h3 { font-size: clamp(1.5rem, 3vw, 2.2rem); line-height: 1.3; }

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul { list-style: none; }

/* Utilities */
.text-accent { color: var(--accent-color); }
.text-main { color: var(--text-main); }
.text-white { color: #ffffff; }
.font-bold { font-weight: 700; }
.font-black { font-weight: 800; }
.tracking-widest { letter-spacing: 0.15em; }
.uppercase { text-transform: uppercase; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.italic { font-style: italic; }
.text-muted { color: rgba(255, 255, 255, 0.6); }
.text-xs { font-size: 0.75rem; }
.text-small { font-size: 0.875rem; }
.mb-sm { margin-bottom: 0.5rem; }
.mb-md { margin-bottom: 1rem; }
.mb-lg { margin-bottom: 2rem; }
.mt-md { margin-top: 1rem; }
.mt-xl { margin-top: 4rem; }
.p-xl { padding: clamp(1.5rem, 5vw, 3rem); }

img { max-width: 100%; height: auto; display: block; }

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 clamp(1rem, 5vw, 2rem);
}

/* Animations Tools */
.flex-between { display: flex; justify-content: space-between; align-items: center; gap: 2rem; }
.flex-center { display: flex; justify-content: center; align-items: center; }
.flex-col { display: flex; flex-direction: column; }
.w-full { width: 100%; }
.w-50 { width: calc(50% - 1rem); }
.w-33 { width: calc(33.333% - 1rem); }
.text-center { text-align: center; }
.hidden { display: none; }

/* Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--primary-color); }
::-webkit-scrollbar-thumb { background: var(--secondary-color); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent-color); }

/* Buttons */
.btn-primary {
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 1rem 2.5rem;
    border-radius: var(--radius-sm);
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: none;
    cursor: pointer;
    box-shadow: 0 0 20px var(--accent-glow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px var(--accent-glow);
    background: #fcd34d;
}

.btn-outline {
    padding: 0.8rem 2rem;
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    border-radius: var(--radius-sm);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-outline:hover {
    background: var(--accent-color);
    color: var(--primary-color);
}

/* Navbar */
.navbar {
    height: var(--header-height);
    background: rgba(2, 6, 23, 0.8);
    backdrop-filter: blur(20px);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-white);
    letter-spacing: -1px;
}

.logo span { color: var(--accent-color); }

.nav-links {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.nav-link {
    font-weight: 500;
    color: var(--text-muted);
    font-size: 1rem;
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: var(--transition);
}

.nav-link:hover { color: var(--accent-color); }
.nav-link:hover::after { width: 100%; }

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 800px;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: calc(var(--header-height) + 3rem);
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: linear-gradient(to top, var(--primary-color), transparent);
    z-index: 2;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 3;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 2rem;
    margin-top: 1rem;
    letter-spacing: -1.5px;
}

.hero-content h1 span {
    display: block;
    color: var(--accent-color);
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 400;
    font-size: 0.9em;
}

.hero-content p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 3.5rem;
    max-width: 550px;
}

/* Luxury Search Bar */
/* Stylist Search Bar */
/* Luxury Search Bar - Kesin ve Nihai Çözüm */
.search-bar {
    background: rgba(15, 23, 42, 0.6); /* Biraz daha koyu ve belirgin */
    backdrop-filter: blur(20px); /* Blur değerini düşürüp netliği artırdım */
    padding: 0.6rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(251, 191, 36, 0.2);
    display: flex;
    gap: 0.2rem;
    box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.8);
    max-width: 950px;
    position: relative;
    z-index: 9999 !important; /* En üstte kal */
    overflow: visible !important;
    isolation: auto; /* Isolate bazen clipping yapar, auto ile serbest bırakıyoruz */
    transition: var(--transition);
}

.search-bar:hover {
    border-color: var(--accent-color);
}

/* Custom Stylist Select Component */
.custom-select {
    position: relative;
    flex: 1;
    cursor: pointer;
    user-select: none;
    border-right: 1px solid rgba(255, 255, 255, 0.05); /* Ayırıcı çizgi */
}

/* Glass form override */
.glass-form .custom-select {
    border-right: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.glass-form .custom-select:hover {
    border-color: var(--accent-color);
}

.glass-form .select-trigger {
    padding: 0.8rem 1.2rem;
}

/* Son dropdown'dan sonra çizgi olmasın */
.custom-select:last-of-type {
    border-right: none;
}

.select-trigger {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 0.8rem 1.5rem;
    color: var(--text-white);
    transition: var(--transition);
}

.select-trigger i {
    font-size: 1.2rem;
    color: var(--accent-color);
    opacity: 0.7;
}

.select-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px; /* Label ve span arası boşluk */
}

.select-text label {
    font-size: 0.65rem;
    font-weight: 800;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
    line-height: 1;
}

.select-text span,
.select-text input {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1;
    margin: 0;
}

.select-trigger::after {
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.8rem;
    color: var(--text-muted);
    transition: var(--transition);
}


.custom-select.open .select-trigger::after {
    transform: rotate(180deg);
    color: var(--accent-color);
}

.custom-select.open {
    z-index: 1000;
}

/* Simgelerin tıklamayı engellememesi için */
.select-trigger > * {
    pointer-events: none;
}

/* Menülerin Konumlanması ve Kırpılma Önleme */
.custom-options {
    position: absolute;
    top: calc(100% + 8px); /* Hafif boşluklu açılış - daha premium durur */
    left: 0;
    width: 280px; /* Biraz daha geniş menüler */
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(40px);
    border: 1px solid var(--accent-color); /* Altın çerçeveli menüler */
    border-radius: var(--radius-md);
    padding: 0.8rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px) scale(0.98);
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    z-index: 10000 !important;
    box-shadow: 0 30px 60px rgba(0,0,0,0.9);
}

.custom-select.open .custom-options {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.custom-option {
    padding: 0.8rem 1.2rem;
    border-radius: var(--radius-sm);
    color: var(--text-muted);
    font-weight: 500;
    transition: var(--transition);
}

.custom-option:hover {
    background: rgba(251, 191, 36, 0.1);
    color: var(--accent-color);
    padding-left: 1.5rem;
}

.custom-option.selected {
    background: var(--accent-color);
    color: var(--primary-color);
    font-weight: 700;
}

/* Remove old styles */
.search-group {
    flex: 1.2; /* Bölge alanı biraz daha geniş olsun */
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 0.8rem 1.5rem;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

/* Bölge Giriş Alanı - Kesin Çözüm */
.select-text input {
    background: transparent !important;
    border: none !important;
    outline: none !important;
    color: var(--text-white) !important;
    font-size: 1rem;
    font-weight: 600;
    width: 100%;
    padding: 0;
    box-shadow: none !important;
    -webkit-text-fill-color: var(--text-white) !important;
}

/* Otomatik Doldurma Arka Planını Kapatma */
.select-text input:-webkit-autofill,
.select-text input:-webkit-autofill:hover, 
.select-text input:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0px 1000px #0f172a inset !important;
    -webkit-text-fill-color: var(--text-white) !important;
    transition: background-color 5000s ease-in-out 0s;
}

.select-text input::placeholder {
    color: rgba(255, 255, 255, 0.2) !important;
    font-weight: 400;
}

.search-group:hover {
    background: rgba(255, 255, 255, 0.03);
}

.btn-search {
    background: var(--accent-color);
    color: var(--primary-color);
    border: none;
    width: 70px;
    border-radius: var(--radius-sm);
    font-size: 1.3rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    box-shadow: 0 0 15px var(--accent-glow);
}

.btn-search:hover {
    transform: scale(1.05);
    background: #fcd34d;
    box-shadow: 0 0 25px var(--accent-glow);
}

/* Floating Hero Image */
.hero-image {
    position: relative;
}

@keyframes floating {
    0% { transform: perspective(1000px) rotateY(-10deg) translateY(0px); }
    50% { transform: perspective(1000px) rotateY(-10deg) translateY(-20px); }
    100% { transform: perspective(1000px) rotateY(-10deg) translateY(0px); }
}

.hero-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    filter: brightness(0.9) contrast(1.1);
    transform: perspective(1000px) rotateY(-10deg);
    animation: floating 6s ease-in-out infinite;
    transition: var(--transition);
}

.hero-image:hover img {
    transform: perspective(1000px) rotateY(0deg) scale(1.02);
    filter: brightness(1) contrast(1);
}

.hero-image::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    bottom: 40px;
    left: 40px;
    border: 1.5px solid var(--accent-color);
    border-radius: var(--radius-lg);
    z-index: -1;
    opacity: 0.4;
    transform: perspective(1000px) rotateY(-15deg);
    box-shadow: 0 0 40px var(--accent-glow);
    transition: var(--transition);
}

.hero-image::after {
    content: '';
    position: absolute;
    top: 30px;
    right: 30px;
    bottom: -30px;
    left: -30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    z-index: -2;
    transform: perspective(1000px) rotateY(-5deg);
    transition: var(--transition);
}

.hero-image:hover::before {
    transform: perspective(1000px) rotateY(0deg) translate(-10px, -10px);
    opacity: 0.6;
}

.hero-image:hover::after {
    transform: perspective(1000px) rotateY(0deg) translate(10px, 10px);
}

/* Listing Cards */
.section { padding: 90px 0; }

.section-title {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 1rem;
}

.section-desc {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 4rem;
}

/* Compact Premium Listing Cards */
.listings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.listing-card {
    background: var(--secondary-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.03);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    display: flex;
    flex-direction: column;
}

.listing-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-color);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4), 0 0 15px rgba(251, 191, 36, 0.1);
}

.card-img {
    height: 220px;
    position: relative;
    overflow: hidden;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.listing-card:hover .card-img img {
    transform: scale(1.1);
}

.card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(2, 6, 23, 0.8) 0%, transparent 60%);
    opacity: 0.6;
    transition: var(--transition);
}

.listing-card:hover .card-overlay {
    opacity: 0.8;
}

.card-badges {
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
}

.badge-type {
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 0.4rem 1rem;
    border-radius: var(--radius-sm);
    font-weight: 800;
    font-size: 0.65rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.2);
}

.badge-category {
    background: rgba(2, 6, 23, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-white);
    padding: 0.4rem 0.8rem;
    border-radius: var(--radius-sm);
    font-size: 0.6rem;
    font-weight: 700;
}

.card-body {
    padding: 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    flex-grow: 1;
}

.card-title {
    font-size: 1.15rem;
    line-height: 1.3;
    margin-bottom: 0.5rem;
    font-weight: 700;
    color: var(--text-white);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-location {
    color: var(--text-muted);
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
}

.card-location i {
    color: var(--accent-color);
    font-size: 0.75rem;
}

.card-features {
    display: flex;
    gap: 1.5rem;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.feature {
    display: flex;
    align-items: center;
    gap: 8px;
}

.feature i {
    color: var(--accent-color);
    font-size: 0.85rem;
    opacity: 0.8;
}

.feature span {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
}

.card-footer {
    padding-top: 1.5rem;
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.price-wrapper {
    display: flex;
    flex-direction: column;
}

.price-label {
    font-size: 0.65rem;
    color: var(--text-muted);
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 0.5px;
    margin-bottom: 1px;
}

.card-price {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--accent-color);
}

.btn-detail-luxury {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.03);
    padding: 0.6rem 1.2rem;
    border-radius: var(--radius-sm);
    color: var(--text-white);
    font-weight: 700;
    font-size: 0.8rem;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.btn-detail-luxury:hover {
    background: var(--accent-color);
    color: var(--primary-color);
    border-color: var(--accent-color);
    transform: translateX(3px);
}

.btn-detail-luxury i {
    font-size: 0.7rem;
}

/* Expertise Section */
.expertise-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.expertise-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    padding: 3rem 2rem;
    border-radius: var(--radius-md);
    text-align: center;
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.expertise-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--accent-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px var(--accent-glow);
}

.expertise-icon {
    width: 80px;
    height: 80px;
    background: rgba(251, 191, 36, 0.05);
    border: 1px solid rgba(251, 191, 36, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: var(--accent-color);
    margin-bottom: 2rem;
    transition: var(--transition);
}

.expertise-card:hover .expertise-icon {
    background: var(--accent-color);
    color: var(--primary-color);
    transform: rotateY(180deg);
}

.expertise-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-white);
}

.expertise-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Service Regions Bar (SEO) */
.service-regions-bar {
    background: rgba(15, 23, 42, 0.4);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 2.5rem;
    text-align: center;
}

.service-regions-bar h4 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.regions-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
}

.regions-list span {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-main);
    opacity: 0.7;
    transition: var(--transition);
    cursor: default;
}

.regions-list span:hover {
    opacity: 1;
    color: var(--accent-color);
    transform: scale(1.05);
}

.regions-list .dot {
    width: 6px;
    height: 6px;
    background: var(--accent-color);
    border-radius: 50%;
    opacity: 0.3;
}

@media (max-width: 1024px) {
    .expertise-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
    .expertise-grid { grid-template-columns: 1fr; }
    .regions-list { gap: 1rem; }
    .regions-list .dot { display: none; }
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

@media (max-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
}

/* Contact Section */
#iletisim {
    background: linear-gradient(to bottom, transparent, rgba(197, 165, 114, 0.03));
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 5rem;
    margin-top: 3rem;
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.info-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--accent-color);
    transform: translateX(10px);
}

.info-item i {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(197, 165, 114, 0.1);
    color: var(--accent-color);
    border-radius: var(--radius-sm);
    font-size: 1.2rem;
}

.info-item h4 {
    color: var(--text-white);
    margin-bottom: 0.3rem;
    font-size: 1rem;
}

.info-item p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.6;
}

.glass-form {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border-radius: var(--radius-lg);
}

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    color: var(--text-white);
    font-weight: 600;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 1.2rem;
    color: var(--text-white);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    transition: var(--transition);
    appearance: none;
    -webkit-appearance: none;
}

.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23c5a572' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.2rem;
    cursor: pointer;
}

.form-group option {
    background: var(--primary-color);
    color: var(--text-white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    background: rgba(255, 255, 255, 0.06);
}

.btn-submit {
    width: 100%;
    padding: 1.2rem;
    background: var(--accent-color);
    color: var(--primary-color);
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 1rem;
}

.btn-submit:hover {
    background: var(--text-white);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(197, 165, 114, 0.3);
}

/* FAQ Accordion */
/* Location Cards */
.location-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.location-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    aspect-ratio: 4/5;
    cursor: pointer;
}

.location-img {
    width: 100%;
    height: 100%;
    position: relative;
}

.location-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s cubic-bezier(0.19, 1, 0.22, 1);
}

.location-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.9) 10%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    color: var(--text-white);
}

.location-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
}

.location-overlay p {
    font-size: 0.85rem;
    color: var(--accent-color);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.location-card:hover img {
    transform: scale(1.1);
}

/* Process Steps */
.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    position: relative;
}

.step-item {
    text-align: center;
    position: relative;
}

.step-number {
    font-size: 4rem;
    font-weight: 800;
    color: rgba(197, 165, 114, 0.05);
    position: absolute;
    top: -1rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: rgba(197, 165, 114, 0.1);
    border: 1px solid rgba(197, 165, 114, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: var(--accent-color);
    font-size: 1.8rem;
    position: relative;
    z-index: 2;
    transition: var(--transition);
}

.step-item:hover .step-icon {
    background: var(--accent-color);
    color: var(--primary-color);
    transform: translateY(-5px);
}

.step-item h4 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.step-item p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

@media (max-width: 992px) {
    .location-grid, .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .location-grid, .process-steps {
        grid-template-columns: 1fr;
    }
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-header {
    padding: 1.8rem 2.2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.faq-header h4 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-white);
    margin: 0;
    line-height: 1.4;
}

.faq-header i {
    color: var(--accent-color);
    font-size: 0.9rem;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: rgba(197, 165, 114, 0.1);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0, 1, 0, 1);
    background: rgba(255, 255, 255, 0.005);
}

.faq-body p {
    padding: 0 2.2rem 1.8rem 2.2rem;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

.faq-item.active {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(197, 165, 114, 0.2);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.faq-item.active .faq-header i {
    transform: rotate(45deg);
    background: var(--accent-color);
    color: var(--primary-color);
}

.faq-item.active .faq-body {
    max-height: 500px;
    transition: max-height 0.8s cubic-bezier(1, 0, 1, 0);
}

.section-actions {
    display: flex;
    justify-content: center;
    margin-top: 5rem;
}

.btn-more {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 1rem 0;
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    transition: var(--transition);
    position: relative;
}

.btn-more::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 1px;
    background: var(--accent-color);
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.btn-more:hover {
    letter-spacing: 4px;
    opacity: 0.8;
}

.btn-more:hover::after {
    width: 100%;
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.service-card {
    background: var(--glass-bg);
    border: 1px solid var(--border-color);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.service-card:hover {
    background: var(--secondary-color);
    border-color: var(--accent-color);
    transform: translateY(-10px);
}

.service-card i {
    font-size: 2.8rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.about-content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 4rem;
}

.stat-item h3 {
    font-size: 2.8rem;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-size: 1.1rem;
    color: var(--text-muted);
    font-weight: 600;
}

.glass-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.01));
    border: 1px solid var(--glass-border);
    padding: 4rem;
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: var(--accent-color);
    filter: blur(100px);
    opacity: 0.1;
}

/* Contact Form */
.contact-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 6rem;
}

.glass-form {
    background: var(--secondary-color);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
}

.glass-form input, .glass-form textarea {
    width: 100%;
    background: rgba(2, 6, 23, 0.5);
    border: 1px solid var(--border-color);
    padding: 0.8rem 1.2rem;
    border-radius: var(--radius-sm);
    color: var(--text-white);
    margin-bottom: 1.5rem;
    outline: none;
    transition: var(--transition);
}

.glass-form input:focus, .glass-form textarea:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 15px var(--accent-glow);
}

.glass-form label {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
}

.form-row {
    display: flex;
    gap: 1.5rem;
}

.w-50 { width: 100%; }

@media (min-width: 769px) {
    .w-50 { width: 50%; }
}

.btn-submit {
    width: 100%;
    padding: 1.2rem;
    background: var(--accent-color);
    color: var(--primary-color);
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 800;
    font-size: 1.1rem;
    cursor: pointer;
    box-shadow: 0 0 20px var(--accent-glow);
}

/* Footer */
.footer {
    background: #020617; /* Deep Navy Black */
    padding: 100px 0 40px;
    border-top: 1px solid rgba(251, 191, 36, 0.1);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    opacity: 0.3;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 4rem;
    margin-bottom: 80px;
}

.footer h4 {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2.5rem;
    color: var(--accent-color);
    font-weight: 700;
}

.footer-links a {
    display: flex;
    align-items: center;
    color: var(--text-muted);
    margin-bottom: 1.2rem;
    font-weight: 500;
    transition: var(--transition);
    font-size: 0.95rem;
}

.footer-links a i {
    width: 20px;
    color: var(--accent-color);
    opacity: 0.8;
}

.footer-links a:hover { 
    color: var(--text-white); 
    transform: translateX(5px);
}

.social-links { 
    display: flex; 
    gap: 1.5rem; 
    margin-top: 2.5rem; 
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-5px);
}

.social-links i { 
    font-size: 1.2rem; 
    color: var(--text-white); 
}

.social-links a:hover i {
    color: var(--primary-color);
}

.footer-bottom {
    padding-top: 50px;
    border-top: 1px solid rgba(255,255,255,0.05);
    text-align: center;
    color: #475569;
    font-size: 0.9rem;
}

/* Mobile Menu */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-white);
    font-size: 2rem;
}

@media (max-width: 1024px) {
    .nav-links { display: none; }
    .mobile-toggle { display: block; }
    .hero { 
        height: auto !important; 
        min-height: 100vh; 
        padding-top: 120px !important; 
        padding-bottom: 60px;
        display: flex !important;
        flex-direction: column;
        justify-content: flex-start;
    }
    .hero-grid { 
        display: block !important;
        text-align: center; 
        width: 100%; 
    }
    .hero-content h1 { font-size: clamp(1.8rem, 8vw, 2.8rem); margin-bottom: 2rem; margin-top: 0; }
    .hero-content p { margin: 0 auto 3rem; max-width: 600px; font-size: 1rem; }
    
    .search-bar { 
        flex-direction: column; 
        padding: 1rem; 
        background: rgba(15, 23, 42, 0.95);
        border: 1px solid rgba(255, 255, 255, 0.1);
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
        border-radius: var(--radius-md);
    }
    
    .search-group, .custom-select { 
        border-right: none !important; 
        border-bottom: 1px solid rgba(255,255,255,0.08); 
        padding: 1.2rem !important; 
        width: 100%;
        justify-content: flex-start;
    }

    .custom-select:last-of-type {
        border-bottom: none;
    }

    .select-trigger {
        padding: 0;
        width: 100%;
    }

    .btn-search { 
        width: 100%;
        height: 60px;
        border-radius: var(--radius-sm);
        margin-top: 0.5rem;
    }

    .custom-options {
        width: 100%; 
        left: 0;
        top: calc(100% + 5px);
    }

    .hero-image {
        max-width: 450px;
        margin: 0 auto;
    }

    .hero-image::before, .hero-image::after {
        display: none; /* Mobilde karmaşayı azaltmak için dekoratif çerçeveleri gizle */
    }

    .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 4rem; }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .form-row .form-group {
        width: 100% !important;
    }

    .glass-form .custom-select {
        width: 100% !important;
        padding: 0 !important; /* Search bar'dan gelen 1.2rem'i sıfırla */
        margin-bottom: 1rem;
    }
    
    .glass-form {
        padding: 1.2rem;
        max-width: 500px;
        margin: 0 auto;
    }

    .glass-form input, 
    .glass-form textarea, 
    .glass-form .custom-select .select-trigger {
        padding: 0.5rem 0.8rem !important;
        font-size: 0.9rem;
        line-height: 1.2 !important;
        margin-bottom: 0; /* İçerdeki marjini sıfırla */
    }

    .glass-form input, 
    .glass-form textarea {
        margin-bottom: 1rem;
    }

    .glass-form label {
        font-size: 0.8rem;
        margin-bottom: 0.4rem;
        margin-top: 0.2rem;
    }

    .nav-links.show {
        display: flex !important;
        position: fixed;
        top: var(--header-height);
        left: 0;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background: rgba(2, 6, 23, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 4rem 2rem;
        z-index: 999;
        gap: 2rem;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        animation: slideDown 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    }

    .nav-links.show .nav-link {
        font-size: 1.5rem;
        width: 100%;
        text-align: center;
    }
}

@keyframes slideDown {
    from { transform: translateY(-20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@media (max-width: 768px) {
    .hero-content h1 { font-size: clamp(2.2rem, 12vw, 3.2rem); }
    .footer-grid { grid-template-columns: 1fr; gap: 4rem; }
    .stats-grid { grid-template-columns: 1fr; gap: 2rem; }
    .section { padding: 60px 0; }
    .p-xl { padding: 2rem; }
}

/* --- Cookie Consent Banner --- */
.cookie-banner {
    position: fixed;
    bottom: 30px;
    left: 30px;
    right: 30px;
    background: rgba(15, 15, 15, 0.85) !important;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: var(--radius-lg);
    padding: 1.5rem 2rem;
    z-index: 10000 !important;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    transform: translateY(150%);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    visibility: hidden;
}

.cookie-banner.show {
    transform: translateY(0);
    visibility: visible;
}

.cookie-content {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.cookie-icon {
    width: 48px;
    height: 48px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.cookie-text h4 {
    color: var(--white);
    font-family: var(--font-primary);
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    margin-top: 0;
}

.cookie-text p {
    color: var(--gray-light);
    font-size: 0.9rem;
    line-height: 1.4;
    max-width: 600px;
    margin: 0;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.btn-cookie-accept {
    padding: 0.75rem 1.5rem;
    background: var(--accent);
    color: var(--primary);
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-cookie-accept:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.btn-cookie-decline {
    padding: 0.75rem 1.5rem;
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cookie-decline:hover {
    background: rgba(255, 255, 255, 0.05);
}

@media (max-width: 768px) {
    .cookie-banner {
        flex-direction: column;
        text-align: center;
        bottom: 20px;
        left: 20px;
        right: 20px;
        padding: 1.5rem;
        gap: 1.5rem;
    }
    
    .cookie-content {
        flex-direction: column;
    }
    
    .cookie-actions {
        width: 100%;
        flex-direction: column;
    }
    
    .cookie-actions button {
        width: 100%;
    }
}
