/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary: #00c4d6;
    --primary-dark: #00a4b3;
    --dark-bg: #0B0E14;
    --dark-surface: #151A22;
    --dark-surface-2: #1E2530;
    --text-main: #FFFFFF;
    --text-muted: #D1D9E6; /* Daha parlak, okunabilir bir gri-beyaz */
    --border-color: rgba(255, 255, 255, 0.1);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

.text-muted {
    color: var(--text-muted) !important;
}

.text-primary {
    color: var(--primary) !important;
}

.bg-primary {
    background-color: var(--primary) !important;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    letter-spacing: -0.02em;
}

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

a:hover {
    color: var(--primary-dark);
}

/* Navbar */
.navbar-brand {
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: -0.03em;
    color: var(--text-main) !important;
}

.navbar-brand span {
    color: var(--primary);
}

.navbar-custom {
    background-color: rgba(11, 14, 20, 0.9) !important;
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--border-color);
    padding: 10px 0;
    transition: var(--transition);
}

.navbar-custom .nav-link {
    color: var(--text-muted) !important;
    font-weight: 500;
    position: relative;
}

.navbar-custom .nav-link:hover, .navbar-custom .nav-link.active {
    color: var(--primary) !important;
}

/* Button */
.btn-primary-custom {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--dark-bg);
    font-weight: 700;
    border: none;
    padding: 12px 28px;
    border-radius: 30px;
    transition: var(--transition);
}

.btn-primary-custom:hover {
    background-color: var(--text-main);
    color: var(--dark-bg);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 229, 255, 0.15);
}

.btn-outline-custom {
    border: 2px solid var(--border-color);
    color: var(--text-main);
    font-weight: 700;
    padding: 10px 26px;
    border-radius: 30px;
    transition: var(--transition);
}

.btn-outline-custom:hover {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--dark-bg);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(rgba(11, 14, 20, 0.7), rgba(11, 14, 20, 0.9)), url('../uploads/hero-bg.jpg') center/cover;
    padding-top: 100px; /* Menüye çarpmaması için eklendi */
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #fff 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Cards */
.custom-card {
    background: var(--dark-surface);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition);
}

.custom-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 229, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

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

.card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.custom-card:hover .card-img-wrap img {
    transform: scale(1.05);
}

.card-price {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: var(--primary);
    color: var(--dark-bg);
    padding: 8px 15px;
    font-weight: 700;
    border-radius: 4px;
}

.card-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--dark-surface-2);
    color: var(--text-main);
    padding: 6px 12px;
    font-weight: 600;
    font-size: 0.8rem;
    border-radius: 4px;
    border: 1px solid var(--border-color);
}

/* Service Box */
.service-box {
    background: var(--dark-surface);
    padding: 40px 30px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    height: 100%;
}

.service-box i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.service-box:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

/* Trust Area */
.trust-area {
    background: var(--dark-surface);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 80px 0;
}

/* Micro Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Footer */
footer {
    background: var(--dark-surface-2);
    border-top: 1px solid var(--border-color);
    padding: 60px 0 30px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--dark-surface);
    color: var(--text-main);
    margin-right: 10px;
    border: 1px solid var(--border-color);
}

.footer-social a:hover {
    background: var(--primary);
    color: var(--dark-bg);
    border-color: var(--primary);
}

/* Filters */
.filter-box {
    background: var(--dark-surface);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.form-control, .form-select {
    background-color: var(--dark-bg);
    border: 1px solid var(--border-color);
    color: var(--text-main);
}

.form-control:focus, .form-select:focus {
    background-color: var(--dark-bg);
    border-color: var(--primary);
    color: var(--text-main);
    box-shadow: none;
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.4) !important;
}

/* Listing Details */
.gallery-main {
    height: 500px;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 15px;
    border: 1px solid var(--border-color);
}

.gallery-main img { width: 100%; height: 500px; object-fit: cover; cursor: pointer; transition: .3s; }
.gallery-main a { display: block; overflow: hidden; }
.gallery-main img:hover { transform: scale(1.02); }

.gallery-thumbs img {
    height: 100px;
    object-fit: cover;
    border-radius: 12px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
}

.gallery-thumbs img:hover, .gallery-thumbs img.active {
    border-color: var(--primary);
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
}

.agent-box {
    background: var(--dark-surface);
    padding: 30px 20px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.agent-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 3px solid var(--primary);
}

/* Floating Animation for Mascot */
@keyframes floating {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

.floating-animation {
    animation: floating 4s ease-in-out infinite;
}
