/* Genel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

:root {
    --primary-gold: #e7ac17;  /* Daha parlak altın */
    --dark-gold: #e7ac17;     /* Daha koyu altın */
    --light-gold: #e7ac17;    /* Daha açık altın */
    --black: #0F0F0F;
    --dark-gray: #1A1A1A;
    --light-gray: #2B2B2B;
    --gradient-dark: linear-gradient(135deg, var(--black) 0%, var(--dark-gray) 100%);
}

/* Navbar */
.navbar {
    position: fixed;
    width: 100%;
    background: var(--gradient-dark);
    backdrop-filter: blur(10px);
    padding: 0.8rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: var(--gradient-dark);
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

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

.nav-brand {
    display: flex;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 10px;
}

.nav-logo img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.nav-logo span {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-gold);
}

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

.nav-link {
    position: relative;
    color: var(--light-gold);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
}

.nav-link span {
    position: relative;
    display: inline-block;
    transition: transform 0.3s ease;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-gold);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.nav-link:hover span {
    transform: translateY(-3px);
}

.nav-link:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.login-btn {
    background: var(--primary-gold);
    color: var(--black) !important;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    white-space: nowrap;
    display: inline-block;
}

.login-btn:hover {
    background: var(--dark-gold);
}

/* Dropdown Menü */
.dropdown {
    position: relative;
    width: 100%;
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--dark-gray);
    border: 1px solid var(--primary-gold);
    min-width: 200px;
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    border-radius: 5px;
    z-index: 1001;
}

.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-content li a {
    padding: 0.8rem 1.5rem;
    display: block;
    color: var(--light-gold);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.dropdown-content li a:hover {
    background: var(--light-gray);
    color: var(--primary-gold);
    padding-left: 2rem;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    background: var(--black);
    overflow: hidden;
    z-index: 1;
}

/* Hero Slider Stilleri */
.hero-slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.5s cubic-bezier(0.165, 0.84, 0.44, 1), transform 1.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    transform: scale(1.1);
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
    backdrop-filter: blur(2px);
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(10, 10, 10, 0.9) 0%, rgba(10, 10, 10, 0.4) 40%, rgba(10, 10, 10, 0.1) 100%);
    z-index: 2;
}

.hero-slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23e7ac17' fill-opacity='0.05'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill-rule='evenodd'/%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
    z-index: 1;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 9999;
    width: 80%;
    max-width: 1000px;
    padding: 0 20px;
    opacity: 0;
    transition: all 0.5s ease;
}

.hero-slide.active .hero-content {
    opacity: 1;
    transform: translate(-50%, -50%);
    z-index: 9999;
}

.hero-content::before {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, rgba(231, 172, 23, 0.3) 0%, rgba(231, 172, 23, 0) 70%);
    border-radius: 50%;
    top: -100px;
    left: -80px;
    z-index: -1;
    animation: float 6s infinite ease-in-out;
}

.hero-content::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(231, 172, 23, 0.2) 0%, rgba(231, 172, 23, 0) 70%);
    border-radius: 50%;
    bottom: -50px;
    right: -50px;
    z-index: -1;
    animation: float 8s infinite ease-in-out reverse;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

.hero-content h1 {
    color: #fff;
    font-size: 2 rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.5);
    opacity: 0;
    animation: fadeInUp 1s forwards 0.5s;
    z-index: 9999;
    text-align: center;
    width: 100%;
}

.hero-content h1::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-gold) 0%, rgba(231, 172, 23, 0) 100%);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.hero-content p {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 30px;
    text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.5);
    opacity: 0;
    animation: fadeInUp 1s forwards 0.8s;
    z-index: 9999;
    text-align: center;
    width: 100%;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2.5rem;
    transform: translateY(30px);
    opacity: 0;
    animation: fadeInUp 1s forwards 1.1s;
    z-index: 9999;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    min-width: 200px;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.cta-button.primary {
    background: var(--primary-gold);
    color: var(--black);
}

.cta-button.primary::before {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 100%);
    opacity: 0;
}

.cta-button.primary:hover::before {
    opacity: 1;
}

.cta-button.secondary {
    background: transparent;
    color: #fff;
    border: 2px solid var(--primary-gold);
}

.cta-button.secondary::before {
    background: var(--primary-gold);
    transform: translateY(100%);
}

.cta-button.secondary:hover {
    color: var(--black);
}

.cta-button.secondary:hover::before {
    transform: translateY(0);
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.cta-button i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.cta-button:hover i {
    transform: translateX(5px);
}

/* Slider Navigasyon */
.hero-slider-navigation {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.slider-dot::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-gold);
    transform: scale(0);
    border-radius: 50%;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.slider-dot.active::before {
    transform: scale(1);
}

/* Slider Oklar */
.hero-slider-arrows {
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
}

.hero-arrow {
    width: 60px;
    height: 60px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    opacity: 0.7;
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.hero-arrow::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-gold);
    z-index: -1;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hero-arrow:hover {
    transform: scale(1.1);
    opacity: 1;
    color: var(--black);
}

.hero-arrow:hover::before {
    transform: translateY(0);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Responsive düzenlemeler */
@media (max-width: 1200px) {
    .hero-content {
        max-width: 900px;
    }
    
    .hero-content h1 {
        font-size: 2.3rem;
    }
    
    .hero-content p {
        font-size: 1.2rem;
    }
    
    .hero-section {
        min-height: 750px;
    }
}

@media (max-width: 992px) {
    .hero-content {
        max-width: 700px;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-content p {
        font-size: 1.2rem;
    }
    
    .hero-buttons {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .hero-arrow {
        width: 50px;
        height: 50px;
        font-size: 1.0rem;
    }
    
    .hero-overlay {
        background: rgba(0, 0, 0, 0.6);
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 600px;
    }
    
    .hero-content {
        max-width: 100%;
        padding: 0 20px;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .hero-buttons {
        gap: 1rem;
    }
    
    .cta-button {
        padding: 12px 25px;
        font-size: 0.9rem;
        min-width: auto;
    }
    
    .hero-slider-navigation {
        bottom: 20px;
    }
    
    .hero-slider-arrows {
        padding: 0 10px;
    }
    
    .hero-arrow {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-content {
        position: absolute !important;
        top: 50% !important;
        left: 0 !important;
        right: 0 !important;
        transform: translateY(-50%) !important;
        padding: 0 15px !important;
        width: 100% !important;
        z-index: 9999 !important;
    }

    .hero-content h1 {
        font-size: 2.5rem !important;
        margin-bottom: 15px !important;
        text-align: center !important;
        width: 100% !important;
        color: #fff !important;
        text-shadow: 0 2px 5px rgba(0,0,0,0.7) !important;
        display: block !important;
    }
    
    .hero-content p {
        font-size: 1.2rem !important;
        margin-bottom: 20px !important;
        text-align: center !important;
        width: 100% !important;
        color: #fff !important;
        text-shadow: 0 2px 4px rgba(0,0,0,0.7) !important;
        display: block !important;
    }
    
    .hero-buttons {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        width: 100% !important;
        gap: 10px !important;
        border-radius: 18px !important;
        margin: 0 auto !important;
        padding: 0 20px !important;
        position: relative !important;
        z-index: 9999 !important;
    }
    
    .cta-button {
        width: 100% !important;
        max-width: 200px !important;
        margin: 0 !important;
        padding: 8px 15px !important;
        display: inline-flex !important;
        justify-content: center !important;
        align-items: center !important;
        opacity: 1 !important;
        visibility: visible !important;
        font-size: 0.9rem !important;
        text-align: center !important;
        min-height: 35px !important;
        border-radius: 18px !important;
    }
    
    .cta-button i {
        margin-right: 6px !important;
        font-size: 0.9rem !important;
    }

    .cta-button.primary {
        background: #C8A45C !important;
        color: #000 !important;
        border: none !important;
    }

    .cta-button.secondary {
        background: transparent !important;
        color: #fff !important;
        border: 1px solid #C8A45C !important;
    }
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--light-gold);
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.3s;
    animation-fill-mode: both;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2rem;
    animation: fadeIn 1s ease 0.6s;
    animation-fill-mode: both;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-button.primary {
    background: var(--primary-gold);
    color: var(--black);
    border: none;
}

.cta-button.secondary {
    background: transparent;
    color: var(--primary-gold);
    border: 2px solid var(--primary-gold);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(200, 164, 92, 0.3);
}

.cta-button.primary:hover {
    background: var(--dark-gold);
}

.cta-button.secondary:hover {
    background: var(--primary-gold);
    color: var(--black);
}

/* Butonlara hover efekti */
.cta-button::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.cta-button:hover::after {
    width: 300px;
    height: 300px;
    opacity: 0;
}

/* Quick Search */
.quick-search {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-dark);
    border: 1px solid var(--primary-gold);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    width: 90%;
    max-width: 1000px;
    z-index: 100;
}

.search-form {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    align-items: center;
}

.search-group {
    position: relative;
}

.search-group i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-gold);
    font-size: 1.2rem;
}

.search-form select,
.search-form input {
    width: 100%;
    padding: 1rem 1rem 1rem 45px;
    border: 1px solid var(--primary-gold);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--light-gold);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.search-form select:focus,
.search-form input:focus {
    outline: none;
    border-color: var(--dark-gold);
    background: rgba(255, 255, 255, 0.15);
}

.search-form select option {
    background: var(--dark-gray);
    color: var(--light-gold);
}

.search-form button {
    padding: 1rem 2rem;
    background: var(--primary-gold);
    color: var(--black);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1rem;
}

.search-form button:hover {
    background: var(--dark-gold);
    transform: translateY(-2px);
}

.search-form button i {
    font-size: 1.2rem;
}

/* Stats Section */
.stats-section {
    background: var(--black);
    padding: 80px 20px;
    margin-top: -50px;
    position: relative;
    z-index: 1;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding-top: 80px;
}

.stat-item {
    text-align: center;
    padding: 30px;
    background: var(--dark-gray);
    border-radius: 15px;
    border: 2px solid var(--primary-gold);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(231, 172, 23, 0.2);
}

.stat-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(231, 172, 23, 0.3);
    border-color: var(--light-gold);
    background: linear-gradient(145deg, var(--dark-gray) 0%, rgba(26, 26, 26, 0.95) 100%);
}

.stat-item i {
    font-size: 2.8rem;
    color: var(--primary-gold);
    margin-bottom: 20px;
    position: relative;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.stat-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
}

/* Yeni İstatistikler Bölümü Stilleri */
.stats-section-new {
    background: #1a1a1a;
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.1);
}

.stats-section-new::before {
    content: '';
    position: absolute;
    top: -150px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(200, 164, 92, 0.1) 0%, rgba(200, 164, 92, 0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.stats-section-new::after {
    content: '';
    position: absolute;
    bottom: -150px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(200, 164, 92, 0.1) 0%, rgba(200, 164, 92, 0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.stats-container-new {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 50px;
    position: relative;
    z-index: 1;
}

.stat-card {
    flex: 1;
    min-width: 300px;
    max-width: 350px;
    perspective: 1000px;
}

.stat-card-inner {
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.7) 0%, rgba(40, 40, 40, 0.9) 100%);
    border-radius: 20px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(200, 164, 92, 0.2);
    transform-style: preserve-3d;
}

.stat-card-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(200, 164, 92, 0.15) 0%, rgba(200, 164, 92, 0) 100%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.stat-card:hover .stat-card-inner {
    transform: translateY(-15px) rotateX(10deg);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3), 0 15px 20px rgba(200, 164, 92, 0.1);
    border-color: rgba(200, 164, 92, 0.4);
}

.stat-card:hover .stat-card-inner::before {
    opacity: 1;
}

.stat-icon {
    margin-bottom: 30px;
}

.stat-icon-circle {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #C8A45C 0%, #E7AC17 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(200, 164, 92, 0.3);
    position: relative;
    z-index: 1;
    transition: all 0.5s ease;
}

.stat-icon-circle::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(135deg, rgba(200, 164, 92, 0.8) 0%, rgba(231, 172, 23, 0.8) 100%);
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: all 0.5s ease;
}

.stat-card:hover .stat-icon-circle {
    transform: scale(1.1) translateY(-5px);
}

.stat-card:hover .stat-icon-circle::before {
    opacity: 0.5;
    transform: scale(1.1);
}

.stat-icon-circle i {
    font-size: 38px;
    color: #000;
    position: relative;
    z-index: 2;
    transition: all 0.5s ease;
}

.stat-card:hover .stat-icon-circle i {
    transform: scale(1.1);
    color: #000;
}

.stat-content {
    position: relative;
    z-index: 1;
}

.stat-number-new {
    font-size: 3.5rem;
    font-weight: 700;
    margin: 0 0 10px;
    background: linear-gradient(to right, #C8A45C, #E7AC17);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    position: relative;
    line-height: 1;
}

.plus {
    font-size: 2.5rem;
    vertical-align: top;
    margin-left: 5px;
    opacity: 0.8;
}

.stat-text-new {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 1px;
    font-weight: 500;
    margin: 0;
    transition: all 0.3s ease;
}

.stat-card:hover .stat-text-new {
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

@media (max-width: 992px) {
    .stats-container-new {
        gap: 30px;
    }
    
    .stat-card {
        min-width: 260px;
    }
    
    .stat-card-inner {
        padding: 30px 20px;
    }
    
    .stat-icon-circle {
        width: 80px;
        height: 80px;
    }
    
    .stat-icon-circle i {
        font-size: 32px;
    }
    
    .stat-number-new {
        font-size: 3rem;
    }
    
    .plus {
        font-size: 2rem;
    }
    
    .stat-text-new {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .stats-section-new {
        padding: 70px 20px;
    }
    
    .stats-container-new {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }
    
    .stat-card {
        width: 100%;
        max-width: 320px;
    }
}

@media (max-width: 480px) {
    .stat-card-inner {
        padding: 25px 15px;
    }
    
    .stat-icon-circle {
        width: 70px;
        height: 70px;
    }
    
    .stat-icon-circle i {
        font-size: 28px;
    }
    
    .stat-number-new {
        font-size: 2.5rem;
    }
    
    .plus {
        font-size: 1.8rem;
    }
    
    .stat-text-new {
        font-size: 1rem;
    }
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-gold);
    line-height: 1;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    margin-bottom: 10px;
    font-family: 'Arial', sans-serif;
}

.stat-text {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 600;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

/* Mobile Menu ve Navigation Styles */
.mobile-menu {
    width: 50px;
    height: 50px;
    position: relative;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    margin-left: 20px;
    z-index: 1000;
    border-radius: 50%;
    background: rgba(231, 172, 23, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu:hover {
    background: rgba(231, 172, 23, 0.2);
    transform: scale(1.1);
}

.menu-bar {
    width: 24px;
    height: 20px;
    position: relative;
    transform: rotate(0deg);
    transition: .5s ease-in-out;
}

.menu-bar span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: var(--primary-gold);
    border-radius: 4px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
    box-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.menu-bar span:nth-child(1) {
    top: 0px;
    transform-origin: left center;
    width: 100%;
}

.menu-bar span:nth-child(2) {
    top: 9px;
    transform-origin: left center;
    width: 75%;
}

.menu-bar span:nth-child(3) {
    top: 18px;
    transform-origin: left center;
    width: 50%;
}

.mobile-menu:hover .menu-bar span:nth-child(2),
.mobile-menu:hover .menu-bar span:nth-child(3) {
    width: 100%;
}

.mobile-menu.active .menu-bar span:nth-child(1) {
    transform: rotate(45deg);
    top: -1px;
    left: 4px;
    width: 100%;
}

.mobile-menu.active .menu-bar span:nth-child(2) {
    width: 0%;
    opacity: 0;
}

.mobile-menu.active .menu-bar span:nth-child(3) {
    transform: rotate(-45deg);
    top: 19px;
    left: 4px;
    width: 100%;
}

/* İlanlar Section */
.listings {
    padding: 5rem 5%;
}

.listings h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.listings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    padding: 20px;
}

.listing-card {
    background: var(--dark-gray);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(200, 164, 92, 0.1);
}

.listing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.listing-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.listing-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.listing-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-gold);
    color: var(--black);
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.9rem;
}

.listing-price {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(0,0,0,0.8);
    color: var(--primary-gold);
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: bold;
}

.listing-content {
    padding: 20px;
}

.listing-details {
    padding: 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    border-bottom: 1px solid rgba(200, 164, 92, 0.1);
}

.detail {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    color: var(--light-gold);
}

.detail i {
    font-size: 1.2rem;
    color: var(--primary-gold);
}

.listing-features {
    padding: 15px;
    display: flex;
    justify-content: space-around;
    background: rgba(200, 164, 92, 0.05);
}

.feature {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--light-gold);
}

.feature i {
    color: var(--primary-gold);
}

.listing-footer {
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(200, 164, 92, 0.1);
}

.location {
    color: var(--light-gold);
    display: flex;
    align-items: center;
    gap: 5px;
}

.location i {
    color: var(--primary-gold);
}

.view-details {
    background: var(--primary-gold);
    color: var(--black);
    padding: 8px 15px;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.3s ease;
    display: block;
    text-align: center;
    margin-top: 10px;
}

.view-details:hover {
    background: var(--dark-gold);
}

/* İletişim Section */
.contact {
    padding: 5rem 5%;
    background: #f9f9f9;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea {
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.contact-form button {
    padding: 1rem;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

/* Modern Ultra Lüks Footer Tasarımı */
.footer {
    background: linear-gradient(to bottom, #111111, #0a0a0a);
    color: #fff;
    position: relative;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c8a45c' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.4;
    z-index: 0;
}

.footer-top {
    position: relative;
    z-index: 1;
    padding: 80px 0 50px;
}

.footer-top::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, rgba(200, 164, 92, 0) 0%, rgba(200, 164, 92, 0.3) 50%, rgba(200, 164, 92, 0) 100%);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin: 0 auto;
}

.footer-section {
    position: relative;
}

.footer-section::after {
    content: '';
    position: absolute;
    top: 10px;
    right: -30px;
    width: 1px;
    height: 80%;
    background: linear-gradient(to bottom, rgba(200, 164, 92, 0) 0%, rgba(200, 164, 92, 0.1) 30%, rgba(200, 164, 92, 0.1) 70%, rgba(200, 164, 92, 0) 100%);
}

.footer-section:last-child::after {
    display: none;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    position: relative;
}

.footer-logo::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, rgba(200, 164, 92, 0.2) 0%, rgba(200, 164, 92, 0) 100%);
}

.footer-logo img {
    height: 60px;
    width: auto;
    filter: drop-shadow(0 5px 15px rgba(200, 164, 92, 0.2));
    transition: all 0.5s ease;
}

.footer-section:hover .footer-logo img {
    transform: translateY(-3px);
    filter: drop-shadow(0 8px 20px rgba(200, 164, 92, 0.3));
}

.footer-logo h3 {
    color: transparent;
    background: linear-gradient(135deg, #E7AC17 0%, #C8A45C 50%, #F1CA6D 100%);
    -webkit-background-clip: text;
    background-clip: text;
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-shadow: 0 2px 10px rgba(231, 172, 23, 0.2);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 25px;
    font-weight: 300;
    letter-spacing: 0.3px;
    font-size: 0.95rem;
    max-width: 400px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 44px;
    height: 44px;
    background: rgba(30, 30, 30, 0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #C8A45C;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(200, 164, 92, 0.1);
    z-index: 1;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #C8A45C 0%, #E7AC17 100%);
    z-index: -1;
    transform: translateY(100%);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    opacity: 0;
}

.social-link:hover {
    transform: translateY(-5px);
    border-color: transparent;
    color: #0a0a0a;
    box-shadow: 0 10px 25px rgba(200, 164, 92, 0.3);
}

.social-link:hover::before {
    transform: translateY(0);
    opacity: 1;
}

.social-link i {
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.footer-section h3 {
    color: #C8A45C;
    font-size: 1.5rem;
    margin-bottom: 30px;
    position: relative;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #C8A45C 0%, rgba(200, 164, 92, 0.3) 100%);
    transition: all 0.4s ease;
}

.footer-section:hover h3::after {
    width: 60px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 15px;
    position: relative;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    font-weight: 300;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    padding-left: 0;
    position: relative;
}

.footer-links a::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, #C8A45C 0%, rgba(200, 164, 92, 0.3) 100%);
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #C8A45C;
    padding-left: 5px;
}

.footer-links a:hover::before {
    width: 100%;
}

.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    display: flex;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
}

.footer-contact li:hover {
    color: rgba(255, 255, 255, 1);
}

.footer-contact li i {
    color: #C8A45C;
    font-size: 1.2rem;
    margin-right: 15px;
    width: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.footer-contact li:hover i {
    transform: translateY(-2px);
    color: #E7AC17;
}

.footer-bottom {
    background: rgba(10, 10, 10, 0.9);
    padding: 25px 0;
    position: relative;
    z-index: 1;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c8a45c' fill-opacity='0.02'%3E%3Cpath d='M0 38.59l2.83-2.83 1.41 1.41L1.41 40H0v-1.41zM0 1.4l2.83 2.83 1.41-1.41L1.41 0H0v1.41zM38.59 40l-2.83-2.83 1.41-1.41L40 38.59V40h-1.41zM40 1.41l-2.83 2.83-1.41-1.41L38.59 0H40v1.41zM20 18.6l2.83-2.83 1.41 1.41L21.41 20l2.83 2.83-1.41 1.41L20 21.41l-2.83 2.83-1.41-1.41L18.59 20l-2.83-2.83 1.41-1.41L20 18.59z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
    z-index: -1;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.copyright {
    display: flex;
    gap: 30px;
    align-items: center;
}

.copyright p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    letter-spacing: 0.2px;
    font-weight: 300;
}

.designer {
    position: relative;
    padding-left: 30px;
}

.designer::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom, rgba(200, 164, 92, 0) 0%, rgba(200, 164, 92, 0.3) 50%, rgba(200, 164, 92, 0) 100%);
}

.designer a {
    color: #C8A45C;
    text-decoration: none;
    font-weight: 400;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.designer a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #E7AC17;
    transition: all 0.3s ease;
}

.designer a:hover {
    color: #E7AC17;
}

.designer a:hover::after {
    width: 100%;
}

.footer-bottom-links {
    display: flex;
    gap: 25px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 0.2px;
    font-weight: 300;
    transition: all 0.3s ease;
    position: relative;
}

.footer-bottom-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, #C8A45C 0%, rgba(200, 164, 92, 0.3) 100%);
    transition: all 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #C8A45C;
}

.footer-bottom-links a:hover::after {
    width: 100%;
}

@media (max-width: 1200px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .footer-section::after {
        display: none;
    }
    
    .footer-top {
        padding: 60px 0 40px;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .copyright {
        flex-direction: column;
        gap: 10px;
    }
    
    .designer {
        padding-left: 0;
    }
    
    .designer::before {
        display: none;
    }
    
    .footer-bottom-links {
        justify-content: center;
        flex-wrap: wrap;
    }
}

/* Overlay efekti */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    z-index: 998;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* İlanlar Bölümü */
.listings-section {
    background: var(--black);
    padding: 80px 0;
    min-height: 100vh;
}

.section-title {
    text-align: center;
    color: var(--primary-gold);
    font-size: 2.5rem;
    margin-bottom: 50px;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.listings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    padding: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.listing-card {
    background: var(--dark-gray);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid rgba(200, 164, 92, 0.1);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    position: relative;
}

.listing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(200, 164, 92, 0.2);
    border-color: var(--primary-gold);
}

.listing-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

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

.listing-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.listing-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-gold);
    color: var(--black);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.listing-price {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(0,0,0,0.8);
    color: var(--primary-gold);
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: bold;
    backdrop-filter: blur(5px);
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.listing-content {
    padding: 20px;
}

.listing-title {
    margin-bottom: 15px;
}

.listing-title h3 {
    color: var(--primary-gold);
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.location {
    color: var(--light-gold);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.listing-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    padding: 15px 0;
    border-top: 1px solid rgba(200, 164, 92, 0.1);
    border-bottom: 1px solid rgba(200, 164, 92, 0.1);
}

.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.feature i {
    color: var(--primary-gold);
    font-size: 1.2rem;
}

.feature span {
    color: var(--light-gold);
    font-size: 0.9rem;
}

.listing-specs {
    display: flex;
    gap: 15px;
    padding-top: 15px;
}

.spec {
    color: var(--primary-gold);
    font-size: 1.1rem;
}

.view-details {
    background: var(--primary-gold);
    color: var(--black);
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.view-details:hover {
    background: var(--dark-gold);
    transform: scale(1.05);
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .listings-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 20px;
    }

    .section-title {
        font-size: 2rem;
    }

    .listing-image {
        height: 200px;
    }
}

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

/* Modal Styles */
.listing-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    z-index: 1000;
}

.modal-content {
    position: relative;
    width: 90%;
    max-width: 1200px;
    margin: 30px auto;
    background: var(--card-bg);
    border-radius: 12px;
    padding: 30px;
    max-height: 90vh;
    overflow-y: auto;
}

/* Slider Styles */
.listing-slider {
    position: relative;
    margin-bottom: 30px;
    width: 100%;
    padding: 15px 0;
}

.slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 10px 30px; /* navigasyon okları için daha fazla alan */
}

.slider-wrapper {
    display: flex;
    transition: transform 0.3s ease;
    gap: 20px;
    flex-wrap: nowrap;
    justify-content: flex-start;
    width: 100%;
    padding: 10px 5px;
}

.slider-wrapper .listing-card {
    flex: 0 0 300px;
    margin-right: 15px;
    max-width: 300px;
}

.slider-wrapper img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    cursor: pointer;
    border-radius: 10px 10px 0 0;
}

@media (max-width: 1200px) {
    .slider-wrapper .listing-card {
        flex: 0 0 280px;
        max-width: 280px;
    }
}

@media (max-width: 992px) {
    .slider-wrapper .listing-card {
        flex: 0 0 260px;
        max-width: 260px;
    }
}

@media (max-width: 768px) {
    .slider-wrapper .listing-card {
        flex: 0 0 240px;
        max-width: 240px;
    }
}

@media (max-width: 576px) {
    .slider-wrapper .listing-card {
        flex: 0 0 220px;
        max-width: 220px;
    }
}

/* Slider Nav Buttons */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: var(--gold-gradient-start);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.slider-nav:hover {
    background-color: var(--gold-gradient-end);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.slider-nav.prev {
    left: -22px; /* Tam kenarlara getirmek için */
}

.slider-nav.next {
    right: -22px; /* Tam kenarlara getirmek için */
}

.slider-nav i {
    color: white;
    font-size: 18px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .slider-container {
        padding: 10px 25px;
    }
    
    .slider-nav {
        width: 35px;
        height: 35px;
    }
    
    .slider-nav.prev {
        left: -17px;
    }
    
    .slider-nav.next {
        right: -17px;
    }
    
    .slider-nav i {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .slider-container {
        padding: 0 35px; /* Küçük ekranlarda daha az padding */
    }
}

/* Fullscreen Viewer */
.fullscreen-viewer {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 3000;
    cursor: zoom-out;
}

.fullscreen-viewer img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

.fullscreen-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: var(--primary-gold);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    font-size: 24px;
    transition: all 0.3s ease;
    z-index: 3001;
    opacity: 0.8;
}

.fullscreen-nav:hover {
    background: var(--dark-gold);
    opacity: 1;
    width: 60px;
    height: 60px;
}

.fullscreen-nav.prev {
    left: 30px;
}

.fullscreen-nav.next {
    right: 30px;
}

/* Slider içindeki resimlere hover efekti */
.slider-image {
    cursor: zoom-in !important;
    transition: opacity 0.3s ease, transform 0.3s ease !important;
}

.slider-image:hover {
    transform: scale(1.02);
}

/* Mobil için tam ekran düzenlemeleri */
@media (max-width: 768px) {
    .fullscreen-viewer img {
        max-width: 95vw;
        max-height: 95vh;
    }

    .close-fullscreen {
        top: 10px;
        right: 10px;
        font-size: 30px;
    }

    .fullscreen-nav {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .fullscreen-nav:hover {
        width: 40px;
        height: 40px;
    }

    .fullscreen-nav.prev {
        left: 10px;
    }

    .fullscreen-nav.next {
        right: 10px;
    }
}

.no-listings {
    grid-column: 1 / -1;
    text-align: center;
    padding: 2rem;
    background: var(--dark-gray);
    border-radius: 12px;
    color: var(--light-gold);
}

.no-listings p {
    font-size: 1.2rem;
    margin: 0;
}

.feature-badge {
    background: rgba(200, 164, 92, 0.1);
    color: var(--primary-gold);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.additional-features {
    display: flex;
    gap: 8px;
}

/* İlan Kartları */
.listings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    padding: 20px;
}

.listing-card {
    background: var(--dark-gray);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(200, 164, 92, 0.1);
}

.listing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.listing-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.listing-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.listing-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-gold);
    color: var(--black);
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.9rem;
}

.listing-price {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(0,0,0,0.8);
    color: var(--primary-gold);
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: bold;
}

.listing-content {
    padding: 20px;
}

/* Modal Stili */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    overflow-y: auto;
}

.modal-content {
    position: relative;
    width: 90%;
    max-width: 1200px;
    margin: 50px auto;
    background: var(--dark-gray);
    border: 1px solid var(--primary-gold);
    border-radius: 10px;
    padding: 20px;
    color: var(--light-gold);
}

.close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 30px;
    color: var(--primary-gold);
    cursor: pointer;
    z-index: 1;
    transition: all 0.3s ease;
}

.close:hover {
    color: var(--dark-gold);
    transform: rotate(90deg);
}

/* Slider Stili */
.modal-slider {
    position: relative;
    width: 100%;
    height: 400px;
    margin-bottom: 30px;
    overflow: hidden;
    border-radius: 8px;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slider-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

.slider-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.slider-image.active {
    opacity: 1;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: var(--primary-gold);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    font-size: 18px;
    transition: all 0.3s ease;
    z-index: 1;
}

.slider-nav:hover {
    background: var(--dark-gold);
}

.slider-nav.prev {
    left: 20px;
}

.slider-nav.next {
    right: 20px;
}

/* İlan Detayları Stili */
.modal-header {
    margin-bottom: 30px;
}

.property-title {
    font-size: 24px;
    color: var(--primary-gold);
    margin-bottom: 10px;
}

.property-price {
    font-size: 28px;
    color: var(--light-gold);
    margin-bottom: 20px;
}

.spec-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.spec-item {
    background: var(--light-gray);
    padding: 15px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.spec-item i {
    color: var(--primary-gold);
    font-size: 20px;
}

.property-description {
    border-top: 1px solid var(--primary-gold);
    padding-top: 20px;
}

.property-description h3 {
    color: var(--primary-gold);
    margin-bottom: 15px;
}

.additional-info {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.additional-info p {
    background: var(--light-gray);
    padding: 10px;
    border-radius: 5px;
}

.additional-info strong {
    color: var(--primary-gold);
}

/* Responsive Düzenlemeler */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 20px auto;
        padding: 15px;
    }

    .modal-slider {
        height: 300px;
    }

    .spec-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

    .property-title {
        font-size: 20px;
    }

    .property-price {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .modal-slider {
        height: 250px;
    }

    .slider-nav {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }

    .spec-grid {
        grid-template-columns: 1fr;
    }

    .additional-info {
        grid-template-columns: 1fr;
    }
}

/* Hakkımızda Bölümü */
.about-section {
    padding: 80px 0;
    background: var(--black);
    color: var(--light-gold);
    overflow-x: hidden;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    padding: 0 20px;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.about-text h3 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: var(--primary-gold);
}

.about-text p {
    color: var(--light-gold);
    line-height: 1.6;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.about-features .feature {
    text-align: center;
    padding: 20px;
    background: var(--dark-gray);
    border-radius: 10px;
    border: 1px solid var(--primary-gold);
    transition: transform 0.3s ease;
}

.about-features .feature:hover {
    transform: translateY(-5px);
}

.about-features .feature i {
    font-size: 2em;
    color: var(--primary-gold);
    margin-bottom: 15px;
}

.about-features .feature h4 {
    color: var(--primary-gold);
    margin-bottom: 10px;
}

.about-features .feature p {
    color: var(--light-gold);
    font-size: 0.9em;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.about-stats .stat {
    text-align: center;
}

.about-stats .number {
    font-size: 2.5em;
    font-weight: bold;
    color: #2c3e50;
    display: block;
}

.about-stats .label {
    color: #666;
    font-size: 0.9em;
}

/* Yeni Hakkımızda Bölümü Stilleri */
.about-section-new {
    position: relative;
    padding: 120px 0;
    background-color: #0f0f0f;
    color: #ffffff;
    overflow: hidden;
}

.about-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.about-bg-circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200, 164, 92, 0.1) 0%, rgba(200, 164, 92, 0) 70%);
}

.circle-1 {
    top: -150px;
    left: -100px;
    width: 500px;
    height: 500px;
}

.circle-2 {
    bottom: -200px;
    right: -150px;
    width: 600px;
    height: 600px;
}

.circle-3 {
    top: 40%;
    left: 30%;
    width: 300px;
    height: 300px;
    opacity: 0.5;
}

.about-bg-shape {
    position: absolute;
    opacity: 0.08;
}

.shape-1 {
    top: 20%;
    right: 5%;
    width: 200px;
    height: 200px;
    background-color: #C8A45C;
    transform: rotate(45deg);
}

.shape-2 {
    bottom: 15%;
    left: 7%;
    width: 150px;
    height: 150px;
    border: 3px solid #C8A45C;
    transform: rotate(20deg);
}

.about-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    z-index: 2;
}

.about-header {
    text-align: center;
    margin-bottom: 80px;
}

.about-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #C8A45C;
    background: linear-gradient(to right, #C8A45C, #E7AC17);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.about-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    letter-spacing: 1px;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 50px;
}

/* Hikayemiz Bölümü */
.about-story {
    grid-column: span 12;
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.8) 0%, rgba(20, 20, 20, 0.8) 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(200, 164, 92, 0.2);
    backdrop-filter: blur(10px);
    margin-bottom: 30px;
}

.about-story-content {
    padding: 50px;
}

.story-heading {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.story-number {
    font-size: 3rem;
    font-weight: 700;
    color: rgba(200, 164, 92, 0.3);
    line-height: 1;
}

.story-title {
    font-size: 2.2rem;
    font-weight: 600;
    color: #C8A45C;
    margin: 0;
}

.story-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

.story-timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-top: 50px;
}

.story-timeline::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, 
        rgba(200, 164, 92, 0.2) 0%, 
        rgba(200, 164, 92, 0.5) 50%,
        rgba(200, 164, 92, 0.2) 100%
    );
    z-index: 1;
}

.timeline-item {
    position: relative;
    text-align: center;
    z-index: 2;
}

.timeline-year {
    font-size: 1.5rem;
    font-weight: 700;
    color: #C8A45C;
    background: #1a1a1a;
    padding: 10px 20px;
    border-radius: 30px;
    margin-bottom: 20px;
    display: inline-block;
    position: relative;
    border: 2px solid rgba(200, 164, 92, 0.3);
}

.timeline-year::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 16px;
    height: 16px;
    background: #C8A45C;
    border-radius: 50%;
    box-shadow: 0 0 0 5px rgba(200, 164, 92, 0.2);
    z-index: -1;
}

.timeline-event {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    padding: 10px;
    max-width: 150px;
    margin: 0 auto;
}

/* Misyonumuz Bölümü */
.about-mission {
    grid-column: span 12;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.8) 0%, rgba(20, 20, 20, 0.8) 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(200, 164, 92, 0.2);
    backdrop-filter: blur(10px);
    margin-bottom: 30px;
}

.mission-image {
    position: relative;
    height: 100%;
    min-height: 400px;
    overflow: hidden;
}

.mission-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.mission-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.2) 100%);
}

.mission-content {
    padding: 50px;
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.8) 0%, rgba(20, 20, 20, 0.8) 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(200, 164, 92, 0.2);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mission-heading {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.mission-number {
    font-size: 3rem;
    font-weight: 700;
    color: rgba(200, 164, 92, 0.3);
    line-height: 1;
}

.mission-title {
    font-size: 2.2rem;
    font-weight: 600;
    color: #C8A45C;
    margin: 0;
}

.mission-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

.mission-goals {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
}

.mission-goal {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: rgba(40, 40, 40, 0.5);
    border-radius: 10px;
    border: 1px solid rgba(200, 164, 92, 0.1);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.mission-goal:hover {
    transform: translateY(-5px);
    border-color: rgba(200, 164, 92, 0.3);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Misyonumuz için özelleştirilmiş ikonlar */
.mission-goal .goal-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #C8A45C 0%, #E7AC17 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.mission-goal:hover .goal-icon {
    transform: scale(1.1);
}

.mission-goal .goal-icon i {
    font-size: 20px;
    color: #0f0f0f;
}

.mission-goal .goal-text h4 {
    color: #C8A45C;
    margin: 0 0 8px;
    font-size: 1.1rem;
}

.mission-goal .goal-text p {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Responsive styles for mission content */
@media (max-width: 992px) {
    .mission-content {
        padding: 30px;
    }
    
    .mission-heading {
        margin-bottom: 20px;
    }
    
    .mission-title {
        font-size: 2rem;
    }
    
    .mission-text {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .mission-content {
        padding: 25px;
    }
    
    .mission-heading {
        margin-bottom: 15px;
    }
    
    .mission-number {
        font-size: 2.5rem;
    }
    
    .mission-title {
        font-size: 1.8rem;
    }
    
    .mission-goals {
        gap: 15px;
    }
    
    .mission-goal {
        padding: 15px;
    }
}

/* Uzman Ekibimiz Bölümü */
.about-team {
    grid-column: span 12;
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.8) 0%, rgba(20, 20, 20, 0.8) 100%);
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(200, 164, 92, 0.2);
    backdrop-filter: blur(10px);
    margin-bottom: 30px;
}

.team-heading {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.team-number {
    font-size: 3rem;
    font-weight: 700;
    color: rgba(200, 164, 92, 0.3);
    line-height: 1;
}

.team-title {
    font-size: 2.2rem;
    font-weight: 600;
    color: #C8A45C;
    margin: 0;
}

.team-intro {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.team-member {
    background: rgba(30, 30, 30, 0.8);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(200, 164, 92, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    border-color: rgba(200, 164, 92, 0.3);
}

.team-member::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #C8A45C, #E7AC17);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
    z-index: 1;
}

.team-member:hover::before {
    transform: scaleX(1);
}

.member-photo {
    height: 250px;
    background-color: #2a2a2a;
    position: relative;
    overflow: hidden;
}

.member-photo::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 70%, rgba(0, 0, 0, 0.7) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.team-member:hover .member-photo::after {
    opacity: 1;
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.team-member:hover .member-photo img {
    transform: scale(1.05);
}

.member-photo-placeholder {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #C8A45C 0%, #E7AC17 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.member-photo-placeholder i {
    font-size: 60px;
    color: #0f0f0f;
}

.member-info {
    padding: 25px;
    text-align: center;
    position: relative;
}

.member-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: #C8A45C;
    margin: 0 0 10px;
    letter-spacing: 0.5px;
}

.member-role {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 10px;
}

.member-experience {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 15px;
    display: inline-block;
    padding: 5px 15px;
    background-color: rgba(200, 164, 92, 0.1);
    border-radius: 20px;
}

.member-contact {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.member-contact-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1;
}

.member-contact-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0;
    transition: all 0.3s ease;
}

.member-contact-btn i {
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.member-contact-btn.phone {
    background: linear-gradient(135deg, rgba(200, 164, 92, 0.8) 0%, rgba(231, 172, 23, 0.8) 100%);
}

.member-contact-btn.phone i {
    color: #fff;
}

.member-contact-btn.phone:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(231, 172, 23, 0.3);
}

.member-contact-btn.whatsapp {
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.8) 0%, rgba(18, 140, 126, 0.8) 100%);
}

.member-contact-btn.whatsapp i {
    color: #fff;
}

.member-contact-btn.whatsapp:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(18, 140, 126, 0.3);
}

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

@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .member-photo {
        height: auto;
        aspect-ratio: 1/1; /* Kare şeklinde fotoğraf alanı */
        overflow: hidden;
    }
    
    .member-photo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center top; /* Fotoğrafın üst kısmını göster */
    }
    
    .member-info {
        padding: 15px;
    }
    
    .member-name {
        font-size: 1.1rem;
        margin-bottom: 5px;
    }
    
    .member-role {
        font-size: 0.9rem;
        margin-bottom: 5px;
    }
    
    .member-experience {
        font-size: 0.8rem;
        padding: 3px 10px;
        margin-bottom: 10px;
    }
    
    .member-contact {
        margin-top: 12px;
    }
    
    .member-contact-btn {
        width: 40px;
        height: 40px;
    }
}

/* Çalışma Felsefemiz Bölümü */
.about-philosophy {
    grid-column: span 12;
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.8) 0%, rgba(20, 20, 20, 0.8) 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(200, 164, 92, 0.2);
    backdrop-filter: blur(10px);
    margin-bottom: 30px;
}

.philosophy-content {
    padding: 50px;
}

.philosophy-heading {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.philosophy-number {
    font-size: 3rem;
    font-weight: 700;
    color: rgba(200, 164, 92, 0.3);
    line-height: 1;
}

.philosophy-title {
    font-size: 2.2rem;
    font-weight: 600;
    color: #C8A45C;
    margin: 0;
}

.philosophy-principles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.principle {
    display: flex;
    gap: 20px;
    background: rgba(40, 40, 40, 0.5);
    padding: 25px;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(200, 164, 92, 0.1);
}

.principle:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    border-color: rgba(200, 164, 92, 0.3);
}

.principle-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #C8A45C 0%, #E7AC17 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.principle-icon i {
    font-size: 25px;
    color: #0f0f0f;
}

.principle-text h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #C8A45C;
    margin: 0 0 10px;
}

.principle-text p {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* Başarılarımız Bölümü */
.about-achievements {
    grid-column: span 12;
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.8) 0%, rgba(20, 20, 20, 0.8) 100%);
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(200, 164, 92, 0.2);
    backdrop-filter: blur(10px);
    margin-bottom: 30px;
}

.achievements-heading {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.achievements-number {
    font-size: 3rem;
    font-weight: 700;
    color: rgba(200, 164, 92, 0.3);
    line-height: 1;
}

.achievements-title {
    font-size: 2.2rem;
    font-weight: 600;
    color: #C8A45C;
    margin: 0;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.achievement {
    text-align: center;
    padding: 30px;
    background: rgba(40, 40, 40, 0.5);
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(200, 164, 92, 0.1);
}

.achievement:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    border-color: rgba(200, 164, 92, 0.3);
}

.achievement-icon {
    margin: 0 auto 20px;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(200, 164, 92, 0.1) 0%, rgba(200, 164, 92, 0.2) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.achievement-icon i {
    font-size: 40px;
    color: #C8A45C;
}

.achievement-number {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(to right, #C8A45C, #E7AC17);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    margin-bottom: 10px;
    line-height: 1;
}

.achievement-number span {
    font-size: 2rem;
    vertical-align: top;
    margin-left: 2px;
}

.achievement-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

/* CTA Bölümü */
.about-cta {
    grid-column: span 12;
    background: linear-gradient(135deg, rgba(200, 164, 92, 0.2) 0%, rgba(200, 164, 92, 0.1) 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(200, 164, 92, 0.3);
}

.cta-content {
    padding: 60px;
    text-align: center;
}

.cta-content h3 {
    font-size: 2rem;
    font-weight: 600;
    color: #C8A45C;
    margin: 0 0 20px;
}

.cta-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #C8A45C 0%, #E7AC17 100%);
    color: #0f0f0f;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(200, 164, 92, 0.3);
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(200, 164, 92, 0.5);
}

.cta-button i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.cta-button:hover i {
    transform: translateX(5px);
}

/* Responsive Ayarlar */
@media (max-width: 1200px) {
    .about-section-new {
        padding: 100px 0;
    }
    
    .about-title {
        font-size: 3rem;
    }
    
    .about-mission {
        grid-template-columns: 1fr;
    }
    
    .mission-image {
        min-height: 300px;
    }
}

@media (max-width: 992px) {
    .about-section-new {
        padding: 80px 0;
    }
    
    .about-title {
        font-size: 2.5rem;
    }
    
    .about-subtitle {
        font-size: 1.1rem;
    }
    
    .about-grid {
        gap: 30px;
    }
    
    .story-title, .mission-title, .team-title, .philosophy-title, .achievements-title {
        font-size: 2rem;
    }
    
    .story-number, .mission-number, .team-number, .philosophy-number, .achievements-number {
        font-size: 2.5rem;
    }
    
    .about-story-content, .mission-content, .about-team, .philosophy-content, .about-achievements {
        padding: 30px;
    }
    
    .cta-content {
        padding: 40px;
    }
    
    .cta-content h3 {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .about-section-new {
        padding: 60px 0;
    }
    
    .about-title {
        font-size: 2.2rem;
    }
    
    .about-header {
        margin-bottom: 50px;
    }
    
    .philosophy-principles {
        grid-template-columns: 1fr;
    }
    
    .cta-button {
        width: 100%;
    }
    
    .story-timeline {
        flex-direction: column;
        gap: 30px;
        align-items: flex-start;
    }
    
    .story-timeline::before {
        width: 2px;
        height: 100%;
        left: 20px;
        top: 0;
        background: linear-gradient(to bottom, 
            rgba(200, 164, 92, 0.2) 0%, 
            rgba(200, 164, 92, 0.5) 50%,
            rgba(200, 164, 92, 0.2) 100%
        );
    }
    
    .timeline-item {
        display: flex;
        align-items: center;
        gap: 20px;
        width: 100%;
    }
    
    .timeline-year {
        margin-bottom: 0;
    }
    
    .timeline-event {
        text-align: left;
        padding: 0;
    }
}

@media (max-width: 576px) {
    .about-container {
        padding: 0 20px;
    }
    
    .story-title, .mission-title, .team-title, .philosophy-title, .achievements-title {
        font-size: 1.8rem;
    }
    
    .story-number, .mission-number, .team-number, .philosophy-number, .achievements-number {
        font-size: 2rem;
    }
    
    .about-story-content, .mission-content, .about-team, .philosophy-content, .about-achievements {
        padding: 25px;
    }
    
    .cta-content {
        padding: 30px;
    }
    
    .cta-content h3 {
        font-size: 1.5rem;
    }
    
    .achievements-grid {
        grid-template-columns: 1fr;
    }
}

/* İletişim Bölümü */
.contact-section {
    padding: 80px 0;
    background: var(--black);
    overflow-x: hidden;
}

.contact-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 0 auto 40px;
    max-width: 900px;
}

.info-card {
    text-align: center;
    padding: 30px;
    background: var(--dark-gray);
    border-radius: 10px;
    border: 1px solid var(--primary-gold);
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
}

.info-card i {
    font-size: 2em;
    color: var(--primary-gold);
    margin-bottom: 15px;
}

.info-card h3 {
    color: var(--primary-gold);
    margin-bottom: 10px;
}

.info-card p {
    color: var(--light-gold);
    line-height: 1.6;
}

.map-container {
    margin-top: 40px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    max-width: 1200px;
    margin: 0 auto;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
    transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
    opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Modern Ultra Lüks İletişim Butonları */
.whatsapp-button, .phone-button {
    position: fixed;
    z-index: 9999;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.whatsapp-button {
    bottom: 30px;
    right: 30px;
}

.phone-button {
    bottom: 30px;
    right: 110px;
}

.whatsapp-toggle, .phone-toggle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1;
}

.whatsapp-toggle {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.phone-toggle {
    background: linear-gradient(135deg, #C8A45C 0%, #E7AC17 100%);
}

.whatsapp-toggle::before, .phone-toggle::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.whatsapp-toggle::after, .phone-toggle::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: inherit;
    border-radius: 50%;
    z-index: -2;
    animation: pulse 2s infinite;
    opacity: 0;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.whatsapp-toggle:hover, .phone-toggle:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.whatsapp-toggle:hover::before, .phone-toggle:hover::before {
    opacity: 1;
}

.whatsapp-toggle:hover::after, .phone-toggle:hover::after {
    animation: pulse 1.5s infinite;
    opacity: 1;
}

.whatsapp-toggle i, .phone-toggle i {
    color: white;
    font-size: 28px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
}

.whatsapp-toggle:hover i, .phone-toggle:hover i {
    transform: scale(1.2);
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.whatsapp-popup, .phone-popup {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 320px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.18);
    transform: scale(0);
    opacity: 0;
    visibility: hidden;
    transform-origin: bottom right;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.whatsapp-popup.active, .phone-popup.active {
    transform: scale(1);
    opacity: 1;
    visibility: visible;
}

.popup-header {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.phone-popup .popup-header {
    background: linear-gradient(135deg, #C8A45C 0%, #E7AC17 100%);
}

.popup-header {
    color: white;
    padding: 20px;
    border-radius: 20px 20px 0 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.popup-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    opacity: 0.8;
    z-index: 0;
}

.popup-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    z-index: 1;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.popup-header h3 i {
    font-size: 20px;
}

.close-popup {
    background: rgba(255, 255, 255, 0.25);
    border: none;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    position: relative;
    z-index: 1;
    backdrop-filter: blur(5px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.close-popup:hover {
    background: rgba(255, 255, 255, 0.35);
    transform: rotate(90deg);
}

.consultants-list {
    padding: 20px;
    max-height: 350px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #C8A45C transparent;
}

.consultants-list::-webkit-scrollbar {
    width: 6px;
}

.consultants-list::-webkit-scrollbar-track {
    background: transparent;
}

.consultants-list::-webkit-scrollbar-thumb {
    background-color: #C8A45C;
    border-radius: 10px;
}

.consultant {
    display: block;
    padding: 15px;
    margin-bottom: 10px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(200, 164, 92, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.consultant::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(200, 164, 92, 0.05) 0%, rgba(200, 164, 92, 0) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.whatsapp-popup .consultant:hover {
    background: rgba(37, 211, 102, 0.08);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.1);
    border-color: rgba(37, 211, 102, 0.2);
}

.phone-popup .consultant:hover {
    background: rgba(200, 164, 92, 0.08);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(200, 164, 92, 0.1);
    border-color: rgba(200, 164, 92, 0.2);
}

.consultant:hover::before {
    opacity: 1;
}

.consultant-info {
    position: relative;
    z-index: 1;
}

.consultant-info h4 {
    margin: 0 0 8px;
    font-size: 16px;
    color: #1a1a1a;
    font-weight: 600;
    letter-spacing: 0.3px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.whatsapp-popup .consultant:hover .consultant-info h4 {
    color: #128C7E;
}

.phone-popup .consultant:hover .consultant-info h4 {
    color: #C8A45C;
}

.consultant-info p {
    margin: 0;
    font-size: 14px;
    color: #666;
    letter-spacing: 0.2px;
    transition: all 0.3s ease;
}

.consultant:hover .consultant-info p {
    color: #444;
}

@media (max-width: 576px) {
    .whatsapp-button {
        bottom: 20px;
        right: 20px;
    }
    
    .phone-button {
        bottom: 20px;
        right: 90px;
    }
    
    .whatsapp-toggle, .phone-toggle {
        width: 50px;
        height: 50px;
    }
    
    .whatsapp-toggle i, .phone-toggle i {
        font-size: 24px;
    }
    
    .whatsapp-popup, .phone-popup {
        width: 280px;
        max-width: calc(100vw - 40px);
    }
    
    .popup-header {
        padding: 15px;
    }
    
    .popup-header h3 {
        font-size: 16px;
    }
    
    .close-popup {
        width: 25px;
        height: 25px;
    }
    
    .consultants-list {
        padding: 15px;
    }
    
    .consultant {
        padding: 12px;
    }
    
    .consultant-info h4 {
        font-size: 15px;
    }
    
    .consultant-info p {
        font-size: 13px;
    }
}

/* İlan Detayları Bölümü Stilleri */
.property-details {
    background: linear-gradient(145deg, var(--dark-gray) 0%, rgba(26, 26, 26, 0.95) 100%);
    border-radius: 15px;
    padding: 30px;
    margin: 20px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(231, 172, 23, 0.1);
    backdrop-filter: blur(10px);
}

.property-details h2 {
    color: var(--primary-gold);
    font-size: 28px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(231, 172, 23, 0.2);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.property-details-section {
    background: linear-gradient(135deg, rgba(43, 43, 43, 0.7) 0%, rgba(26, 26, 26, 0.7) 100%);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 25px;
    border: 1px solid rgba(231, 172, 23, 0.15);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.property-details-section:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    border-color: rgba(231, 172, 23, 0.25);
}

.property-details-section h3 {
    color: var(--primary-gold);
    font-size: 22px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(231, 172, 23, 0.2);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    font-weight: 600;
}

.property-details-section h3 i {
    color: var(--primary-gold);
    font-size: 24px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.spec-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    padding: 10px;
}

.spec-item {
    background: linear-gradient(135deg, rgba(43, 43, 43, 0.6) 0%, rgba(26, 26, 26, 0.6) 100%);
    padding: 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    border: 1px solid rgba(231, 172, 23, 0.1);
    position: relative;
    backdrop-filter: blur(5px);
}

.spec-item:not(:last-child)::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, 
        rgba(231, 172, 23, 0) 0%,
        rgba(231, 172, 23, 0.2) 50%,
        rgba(231, 172, 23, 0) 100%
    );
}

.spec-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    border-color: rgba(231, 172, 23, 0.3);
    background: linear-gradient(135deg, rgba(43, 43, 43, 0.8) 0%, rgba(26, 26, 26, 0.8) 100%);
}

.spec-item i {
    color: var(--primary-gold);
    font-size: 24px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(231, 172, 23, 0.15) 0%, rgba(231, 172, 23, 0.05) 100%);
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.spec-item:hover i {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(231, 172, 23, 0.2) 0%, rgba(231, 172, 23, 0.1) 100%);
    box-shadow: 0 4px 15px rgba(231, 172, 23, 0.2);
}

.spec-item span {
    color: #fff;
    font-size: 15px;
    flex: 1;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    letter-spacing: 0.3px;
}

.location-info p,
.listing-info p,
.legal-info p {
    padding: 18px;
    border-bottom: 1px solid rgba(231, 172, 23, 0.1);
    margin: 0;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    border-radius: 8px;
}

.location-info p:last-child,
.listing-info p:last-child,
.legal-info p:last-child {
    border-bottom: none;
}

.location-info p:hover,
.listing-info p:hover,
.legal-info p:hover {
    background: linear-gradient(135deg, rgba(43, 43, 43, 0.8) 0%, rgba(26, 26, 26, 0.8) 100%);
    transform: translateX(5px);
}

.location-info strong,
.listing-info strong,
.legal-info strong {
    color: var(--primary-gold);
    margin-right: 15px;
    font-weight: 600;
    min-width: 120px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.description-content p {
    line-height: 1.9;
    color: #fff;
    text-align: justify;
    padding: 15px 0;
    letter-spacing: 0.3px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .spec-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .property-details {
        padding: 20px;
        margin: 15px 0;
    }
    
    .property-details-section {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .spec-item {
        padding: 15px;
    }

    .property-details h2 {
        font-size: 24px;
    }

    .property-details-section h3 {
        font-size: 20px;
    }

    .location-info p,
    .listing-info p,
    .legal-info p {
        padding: 15px;
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .location-info strong,
    .listing-info strong,
    .legal-info strong {
        min-width: auto;
        margin-bottom: 5px;
    }
}

@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-features {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .about-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .contact-info {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .info-card {
        margin: 0 auto;
        max-width: 100%;
        width: 100%;
    }
}

/* Yeni stil ekle */
.toggle-icon {
    width: 30px;
    height: 20px;
    position: relative;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.toggle-icon span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--primary-gold);
    transition: all 0.3s ease;
}

.toggle-icon.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.toggle-icon.active span:nth-child(2) {
    opacity: 0;
}

.toggle-icon.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Vizyonumuz Bölümü Stilleri */
.vision-content {
    padding: 50px;
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.8) 0%, rgba(20, 20, 20, 0.8) 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(200, 164, 92, 0.2);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.vision-heading {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.vision-number {
    font-size: 3rem;
    font-weight: 700;
    color: rgba(200, 164, 92, 0.3);
    line-height: 1;
}

.vision-title {
    font-size: 2.2rem;
    font-weight: 600;
    color: #C8A45C;
    margin: 0;
}

.vision-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

.vision-goals {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
}

.vision-goal {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: rgba(40, 40, 40, 0.5);
    border-radius: 10px;
    border: 1px solid rgba(200, 164, 92, 0.1);
    transition: transform 0.3s ease;
}

.vision-goal:hover {
    transform: translateY(-5px);
    border-color: rgba(200, 164, 92, 0.3);
}

.goal-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #C8A45C 0%, #E7AC17 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.goal-icon i {
    font-size: 20px;
    color: #0f0f0f;
}

.goal-text h4 {
    color: #C8A45C;
    margin: 0 0 8px;
    font-size: 1.1rem;
}

.goal-text p {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Responsive styles for vision content */
@media (max-width: 992px) {
    .vision-content {
        padding: 30px;
    }
    
    .vision-heading {
        margin-bottom: 20px;
    }
    
    .vision-title {
        font-size: 2rem;
    }
    
    .vision-text {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .vision-content {
        padding: 25px;
    }
    
    .vision-heading {
        margin-bottom: 15px;
    }
    
    .vision-number {
        font-size: 2.5rem;
    }
    
    .vision-title {
        font-size: 1.8rem;
    }
    
    .vision-goals {
        gap: 15px;
    }
    
    .vision-goal {
        padding: 15px;
    }
}

/* Misyonumuz Bölümü */

/* Yeni İletişim Bölümü */
.contact-section-new {
    padding: 0;
    background: linear-gradient(180deg, #0a0a0a 0%, #121212 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.contact-section-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c8a45c' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.4;
    z-index: 0;
}

.contact-container {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

.contact-header {
    text-align: center;
    width: 100%;
    margin: 0;
    padding: 40px 0;
    background: linear-gradient(to right, rgba(10, 10, 10, 0) 0%, rgba(10, 10, 10, 0.8) 40%, rgba(10, 10, 10, 0.8) 60%, rgba(10, 10, 10, 0) 100%);
    position: relative;
}

.contact-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 1px;
    background: linear-gradient(90deg, rgba(200, 164, 92, 0) 0%, rgba(200, 164, 92, 0.8) 50%, rgba(200, 164, 92, 0) 100%);
}

.contact-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: transparent;
    background: linear-gradient(135deg, #E7AC17 0%, #C8A45C 50%, #F1CA6D 100%);
    -webkit-background-clip: text;
    background-clip: text;
    text-align: center;
    display: block;
    margin: 0 0 10px 0;
    letter-spacing: 1px;
    text-shadow: 0 2px 10px rgba(231, 172, 23, 0.2);
}

.contact-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    gap: 0;
    height: calc(100vh - 140px);
    min-height: 450px;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    height: 100%;
}

.contact-info-card {
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.9) 0%, rgba(20, 20, 20, 0.9) 100%);
    border-radius: 0;
    box-shadow: none;
    border-right: 1px solid rgba(200, 164, 92, 0.1);
    border-bottom: 1px solid rgba(200, 164, 92, 0.1);
    border-top: none;
    border-left: none;
    padding: 30px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(200, 164, 92, 0.05) 0%, rgba(200, 164, 92, 0) 100%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.contact-info-card:hover {
    background: linear-gradient(135deg, rgba(35, 35, 35, 0.9) 0%, rgba(25, 25, 25, 0.9) 100%);
    border-color: rgba(200, 164, 92, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.contact-info-card:hover::before {
    opacity: 1;
}

.card-icon-wrapper {
    width: 80px;
    height: 80px;
    background: rgba(200, 164, 92, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
    transition: all 0.4s ease;
}

.card-icon-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 1px dashed rgba(200, 164, 92, 0.3);
    animation: spin 20s linear infinite;
}

.card-icon-wrapper::after {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    width: calc(100% + 6px);
    height: calc(100% + 6px);
    border-radius: 50%;
    border: 1px solid rgba(200, 164, 92, 0.1);
}

.contact-info-card:hover .card-icon-wrapper {
    background: rgba(200, 164, 92, 0.1);
    transform: scale(1.05);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #C8A45C 0%, #E7AC17 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(200, 164, 92, 0.3);
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.contact-info-card:hover .card-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(200, 164, 92, 0.4);
}

.card-icon i {
    font-size: 24px;
    color: #0a0a0a;
    transition: all 0.4s ease;
}

.info-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #C8A45C;
    margin: 0 0 15px;
    text-align: center;
    letter-spacing: 0.5px;
    position: relative;
    display: inline-block;
}

.info-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 1px;
    background: linear-gradient(90deg, rgba(200, 164, 92, 0) 0%, rgba(200, 164, 92, 0.8) 50%, rgba(200, 164, 92, 0) 100%);
}

.info-content {
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    width: 100%;
    margin-bottom: 15px;
}

.info-text {
    margin: 0 0 8px;
    font-size: 1rem;
    line-height: 1.6;
    transition: all 0.3s ease;
    font-weight: 300;
}

.contact-info-card:hover .info-text {
    color: rgba(255, 255, 255, 1);
}

.day {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
}

.info-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #C8A45C;
    text-decoration: none;
    font-weight: 600;
    margin-top: 15px;
    padding: 8px 15px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    border: 1px solid rgba(200, 164, 92, 0.3);
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.info-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, #C8A45C 0%, #E7AC17 100%);
    transition: all 0.3s ease;
    z-index: -1;
}

.info-link:hover {
    color: #0a0a0a;
    border-color: transparent;
}

.info-link:hover::before {
    width: 100%;
}

.info-link i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.info-link:hover i {
    transform: translateX(3px);
    color: #0a0a0a;
}

.contact-map-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
}

.contact-map-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 20px;
    background: linear-gradient(to bottom, rgba(10, 10, 10, 0.5) 0%, rgba(10, 10, 10, 0) 100%);
    z-index: 10;
    pointer-events: none;
}

.contact-map-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 20px;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.5) 0%, rgba(10, 10, 10, 0) 100%);
    z-index: 10;
    pointer-events: none;
}

.contact-map-wrapper iframe {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    border: none;
    display: block;
    filter: grayscale(20%) contrast(1.1) brightness(0.9);
    transition: all 0.6s ease;
}

.contact-map-wrapper:hover iframe {
    filter: grayscale(0%) contrast(1.05) brightness(1);
}

@media (max-width: 1200px) {
    .contact-grid {
        grid-template-columns: 1fr;
        height: auto;
    }
    
    .contact-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-map-wrapper iframe {
        height: 500px;
    }
}

@media (max-width: 992px) {
    .contact-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .contact-header {
        padding: 20px 0;
    }
    
    .contact-title {
        font-size: 2.5rem;
    }
    
    .contact-cards {
        grid-template-columns: 1fr;
    }
    
    .contact-map-wrapper iframe {
        height: 400px;
    }
    
    .card-icon-wrapper {
        width: 70px;
        height: 70px;
    }
    
    .card-icon {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 576px) {
    .contact-title {
        font-size: 2.2rem;
    }
    
    .info-title {
        font-size: 1.2rem;
    }
}

.consultant-info .consultant-experience,
.consultant-info .consultant-note {
    margin-top: 5px;
    font-size: 12px;
    color: #777;
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.consultant-info .consultant-experience i,
.consultant-info .consultant-note i {
    color: #C8A45C;
    font-size: 12px;
}

.whatsapp-popup .consultant:hover .consultant-note i {
    color: #128C7E;
}

.phone-popup .consultant:hover .consultant-experience {
    color: #555;
}

.whatsapp-popup .consultant:hover .consultant-note {
    color: #555;
}

.consultant-info .consultant-experience {
    margin-top: 6px;
    background: rgba(200, 164, 92, 0.05);
    padding: 3px 8px;
    border-radius: 4px;
    display: inline-flex;
}

.consultant-info .consultant-note {
    margin-top: 6px;
    background: rgba(37, 211, 102, 0.05);
    padding: 3px 8px;
    border-radius: 4px;
    display: inline-flex;
}

/* Hamburger menü */
.nav-toggle {
    display: none;
    cursor: pointer;
    z-index: 1001;
    padding: 10px;
}

.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    position: relative;
}

.bar {
    height: 3px;
    width: 100%;
    background: var(--gold-gradient);
    border-radius: 10px;
    transition: all 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
}

@media screen and (max-width: 991px) {
    .nav-toggle {
        display: block;
        position: relative;
        z-index: 1002; /* Overlay üzerinde olması için */
        margin-left: auto; /* Tam sağa yapıştırmak için */
        padding-right: 0; /* Sağ kenara daha da yapıştırmak için */
    }
    
    .navbar {
        height: 80px;
        padding: 0 15px; /* Padding azaltılarak daha geniş alan */
    }
    
    .nav-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        padding: 0;
    }
    
    .nav-brand {
        margin-right: auto; /* Tam sola yapıştırmak için */
        padding-left: 0; /* Sol kenara tam yapıştırmak için */
    }
    
    .nav-logo {
        display: flex;
        align-items: center;
        gap: 10px;
        padding-left: 0; /* Sol kenara tam yapıştırmak için */
    }
    
    .nav-logo img {
        width: 40px;
        height: 40px;
        border-radius: 50%;
    }
    
    .nav-logo span {
        font-size: 1.2rem;
        font-weight: 700;
        background: var(--gold-gradient);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }
    
    .hamburger {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 21px;
        position: relative;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 320px;
        height: 100vh;
        background: rgba(15, 15, 15, 0.98);
        backdrop-filter: blur(15px);
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        padding: 30px 2rem;
        transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1);
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.25);
        border-left: 1px solid rgba(200, 164, 92, 0.1);
        z-index: 999;
        margin: 0;
    }
    
    .nav-menu.active {
        right: 0;
    }
}

/* Nav overlay */
.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile header ve sosyal medya iconları */
.mobile-header {
    display: none;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding-bottom: 20px;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(200, 164, 92, 0.1);
}

.mobile-logo {
    height: 40px;
    width: auto;
    border-radius: 50%;
}

.mobile-title {
    font-size: 1.8rem;
    font-weight: 700;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 1px;
}

.close-menu {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(200, 164, 92, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.close-menu i {
    color: var(--primary-gold);
    font-size: 1.2rem;
}

.close-menu:hover {
    background: rgba(200, 164, 92, 0.2);
    transform: rotate(90deg);
}

.mobile-social {
    display: none;
    margin-top: 40px;
    justify-content: center;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(200, 164, 92, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-gold);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--primary-gold);
    color: var(--black);
    transform: translateY(-5px);
}

@media screen and (max-width: 991px) {
    .mobile-header {
        display: flex;
    }
    
    .mobile-social {
        display: flex;
    }
    
    /* Hamburger aktif durumu */
    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    
    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
}

/* Body class when menu is open */
body.menu-open {
    overflow: hidden;
}

.listings-button {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    width: 100%;
    text-align: center;
}

.listings-button .cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Consultant kartları için mobil düzeltmeler */
@media (max-width: 576px) {
    .consultants-list {
        padding: 12px;
        max-height: 60vh;
    }
    
    .consultant {
        padding: 12px;
        margin-bottom: 10px;
        height: auto;
        border-radius: 10px;
    }
    
    .consultant-info h4 {
        font-size: 14px;
        margin-bottom: 4px;
    }
    
    .consultant-info p {
        font-size: 12px;
        line-height: 1.2;
        margin-bottom: 4px;
    }
    
    .consultant-info .consultant-experience,
    .consultant-info .consultant-note {
        font-size: 11px;
        margin-top: 4px;
        padding: 2px 6px;
        gap: 5px;
    }
    
    .consultant-info .consultant-experience i,
    .consultant-info .consultant-note i {
        font-size: 11px;
    }
}

