/* 
   Premium Emlak - Ana CSS Dosyası
   Bu dosya emlak sitesinin ana stillerini içerir
*/

/* ===== GENEL AYARLAR ===== */
:root {
    --primary-color: #2d6a4f; /* Daha koyu zengin yeşil */
    --secondary-color: #40916c; /* Orta zengin yeşil */
    --accent-color: #52b788; /* Canlı orta yeşil */
    --light-color: #d8f3dc; /* Açık pastel yeşil */
    --dark-color: #1b4332; /* Çok koyu yeşil */
    --gray-color: #6c757d;
    --white-color: #ffffff;
    --shadow: 0 5px 15px rgba(45, 106, 79, 0.18);
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary-color);
}

p {
    margin-bottom: 15px;
}

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

a:hover {
    color: var(--secondary-color);
}

img {
    max-width: 100%;
}

.section-padding {
    padding: 80px 0;
}

.bg-light {
    background-color: #f8f9fa;
}

/* ===== BUTTONS ===== */
.btn {
    padding: 10px 25px;
    border-radius: 5px;
    font-weight: 600;
    transition: var(--transition);
    text-transform: capitalize;
    border: none;
}

.btn-primary {
    background-color: var(--secondary-color);
    color: var(--white-color);
    border: 2px solid var(--secondary-color);
    box-shadow: 0 4px 8px rgba(64, 145, 108, 0.2);
}

.btn-primary:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(64, 145, 108, 0.3);
}

.btn-outline-primary {
    background-color: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

.btn-outline-primary:hover {
    background-color: var(--secondary-color);
    color: var(--white-color);
    transform: translateY(-2px);
}

.btn-outline-light {
    background-color: transparent;
    color: var(--light-color);
    border: 2px solid var(--light-color);
}

.btn-outline-light:hover {
    background-color: var(--light-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* ===== HEADER & NAVIGATION ===== */
.navbar {
    background-color: rgba(45, 98, 71, 0.98);
    padding: 1.5rem 0;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.navbar.scrolled {
    background-color: rgba(45, 106, 79, 0.98); /* Koyu zengin yeşil */
    box-shadow: var(--shadow);
    padding: 10px 0;
}

.navbar-brand {
    font-size: 24px;
    font-weight: 700;
    color: var(--white-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar-logo {
    height: 60px;
    width: auto;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.navbar-brand:hover .navbar-logo {
    transform: scale(1.05);
}

.logo-text {
    color: #fff;
    margin: 0;
    font-size: 1.8rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.logo-text span {
    color: #a8e6bc;
}

/* Responsive logo */
@media (max-width: 768px) {
    .navbar-logo {
        height: 50px;
    }
    
    .logo-text {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .navbar-logo {
        height: 45px;
    }
    
    .logo-text {
        font-size: 1.3rem;
    }
}

.navbar-toggler {
    border: none;
    color: var(--white-color);
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-nav .nav-item {
    margin: 0 5px;
}

.navbar-nav .nav-link {
    color: #fff !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #a8e6bc !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: #a8e6bc;
    transition: var(--transition);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 70%;
}

.dropdown-menu {
    border: none;
    box-shadow: var(--shadow);
    border-radius: 5px;
    padding: 10px;
}

.dropdown-item {
    font-weight: 500;
    padding: 8px 15px;
    transition: var(--transition);
}

.dropdown-item:hover {
    background-color: rgba(231, 76, 60, 0.1);
    color: var(--secondary-color);
}

.lang-select {
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.language-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    min-width: 120px;
    margin-top: 10px;
}

.language-dropdown a {
    display: block;
    padding: 8px 15px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s ease;
}

.language-dropdown a:hover {
    background: #f8f9fa;
    color: var(--primary-color);
}

.language-dropdown.show {
    display: block;
}

/* Hover yerine sadece JavaScript ile kontrol edilecek */

/* Dil seçici için ok işareti */
.lang-select .dropdown-arrow {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.lang-select:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-arrow.rotated {
    transform: rotate(180deg);
}

/* Dil seçici için mobil görünüm */
@media (max-width: 991px) {
    .language-dropdown {
        position: static;
        background: rgba(255,255,255,0.05);
        box-shadow: none;
        margin-top: 5px;
        border-radius: 0;
        padding-left: 15px;
        display: none;
    }
    
    .language-dropdown a {
        color: rgba(255,255,255,0.7);
        padding: 8px 15px;
    }
    
    .language-dropdown a:hover {
        background: rgba(255,255,255,0.1);
        color: #fff;
    }
    
    .language-dropdown.show {
        display: block;
    }
}

/* ===== HERO SECTION ===== */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    color: #fff;
    overflow: hidden;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.video-background:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(27, 67, 50, 0.2), rgba(27, 67, 50, 0.4));
    z-index: 1;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    backdrop-filter: blur(5px);
    margin-top: 100px;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content span {
    color: #a8e6bc;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.search-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 10px;
    backdrop-filter: blur(5px);
}

.search-form select.form-select {
    height: 50px;
    border: none;
    font-size: 16px;
}

.search-form .btn {
    height: 50px;
    font-size: 16px;
}

/* ===== SECTION TITLE ===== */
.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 36px;
    position: relative;
    display: inline-block;
    margin-bottom: 15px;
    padding-bottom: 15px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--secondary-color);
}

.section-title h2 span {
    color: var(--secondary-color);
}

.section-title p {
    color: var(--gray-color);
    max-width: 700px;
    margin: 0 auto;
    font-size: 18px;
}

/* ===== PROPERTY CARDS ===== */
.property-grid {
    margin: 0 -15px;
}

.property-card {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    margin-bottom: 30px;
    height: 100%;
    background-color: #fff;
}

.property-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.property-image {
    position: relative;
    overflow: hidden;
    height: 220px;
}

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

.property-card:hover .property-image img {
    transform: scale(1.05);
}

.property-type {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--accent-color);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 1;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.property-label {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #ff6b6b;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 1;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.property-label.featured {
    background-color: #ffd166;
    color: #333;
}

.property-features {
    display: flex;
    justify-content: space-between;
    padding: 15px;
    background-color: rgba(248, 249, 250, 0.8);
    border-top: 1px solid #eee;
    font-size: 14px;
    color: var(--gray-color);
    font-weight: 500;
}

.property-features span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.property-features span i {
    color: var(--accent-color);
}

.property-content {
    padding: 20px;
}

.property-content h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.property-address {
    color: var(--gray-color);
    font-size: 14px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.property-address i {
    color: var(--accent-color);
}

.property-price {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.property-desc {
    color: var(--gray-color);
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.6;
}

.property-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.btn-heart {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f9fa;
    border: 1px solid #eee;
    color: var(--gray-color);
    transition: all 0.3s ease;
}

.btn-heart:hover {
    background-color: #fff0f0;
}

.btn-heart.active {
    color: #ff6b6b;
    background-color: #fff0f0;
}

/* ===== PORTFOLIO PAGE STYLES ===== */
.portfolio-section .card {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.portfolio-section .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.portfolio-section .card-img-top {
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-section .card:hover .card-img-top {
    transform: scale(1.05);
}

.portfolio-section .card-body {
    padding: 20px;
}

.portfolio-section .card-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.portfolio-section .card-text {
    color: var(--gray-color);
    margin-bottom: 20px;
    line-height: 1.8;
}

.portfolio-section .card-text i {
    width: 20px;
    margin-right: 5px;
}

.portfolio-section .price {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
}

.portfolio-filters .btn {
    border-radius: 30px;
    padding: 8px 20px;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-right: 8px;
    margin-bottom: 10px;
}

.portfolio-filters .btn.active {
    background-color: var(--secondary-color);
    color: white;
    box-shadow: 0 4px 10px rgba(64, 145, 108, 0.2);
}

/* ===== CATEGORIES ===== */
.categories-grid {
    margin-top: 30px;
}

.category-card {
    background-color: #fff;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.category-icon {
    width: 80px;
    height: 80px;
    background-color: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.category-icon i {
    font-size: 32px;
    color: var(--primary-color);
    transition: all 0.4s ease;
}

.category-card:hover .category-icon {
    background-color: var(--primary-color);
}

.category-card:hover .category-icon i {
    color: #fff;
}

.category-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.category-card p {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 0;
}

/* ===== ABOUT SECTION ===== */
.about-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.about-content {
    padding-left: 30px;
}

.about-content p {
    margin-bottom: 25px;
}

.about-features {
    margin: 30px 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(64, 145, 108, 0.15); /* Orta koyu yeşil */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

.feature-icon i {
    font-size: 20px;
    color: var(--secondary-color);
}

.feature-text h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.feature-text p {
    margin-bottom: 0;
    color: var(--gray-color);
}

/* ===== TEAM SECTION ===== */
.team-grid {
    margin-bottom: -30px;
}

.team-member {
    background-color: var(--white-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-bottom: 30px;
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.team-image {
    position: relative;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: var(--transition);
}

.team-member:hover .team-image img {
    transform: scale(1.1);
}

.team-social {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(45, 106, 79, 0.85); /* Koyu yeşil */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.team-member:hover .team-social {
    opacity: 1;
}

.team-social a {
    width: 40px;
    height: 40px;
    background-color: var(--white-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 5px;
    color: var(--primary-color);
    font-size: 16px;
    transform: translateY(20px);
    transition: var(--transition);
    opacity: 0;
}

.team-member:hover .team-social a {
    opacity: 1;
    transform: translateY(0);
}

.team-member:hover .team-social a:nth-child(1) {
    transition-delay: 0.1s;
}

.team-member:hover .team-social a:nth-child(2) {
    transition-delay: 0.2s;
}

.team-member:hover .team-social a:nth-child(3) {
    transition-delay: 0.3s;
}

.team-member:hover .team-social a:nth-child(4) {
    transition-delay: 0.4s;
}

.team-social a:hover {
    background-color: var(--secondary-color);
    color: var(--white-color);
}

.team-content {
    padding: 20px;
    text-align: center;
}

.team-content h3 {
    font-size: 20px;
    margin-bottom: 5px;
}

.team-content p {
    color: var(--gray-color);
    margin-bottom: 0;
}

/* ===== TESTIMONIALS ===== */
.testimonial-card {
    background-color: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    height: 100%;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-rating {
    margin-bottom: 15px;
}

.testimonial-rating i {
    color: #ffc107;
    font-size: 18px;
    margin-right: 2px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
    font-style: italic;
    position: relative;
}

.testimonial-text p {
    position: relative;
    padding-left: 25px;
}

.testimonial-text p:before {
    content: '\201C';
    font-size: 60px;
    font-family: Georgia, serif;
    color: var(--light-color);
    position: absolute;
    left: -10px;
    top: -20px;
    opacity: 0.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--light-color);
}

.testimonial-author h4 {
    margin: 0;
    font-size: 18px;
    color: var(--primary-color);
}

.testimonial-author p {
    margin: 0;
    font-size: 14px;
    color: var(--gray-color);
}

/* ===== STATS COUNTER STYLES ===== */
.stats-section {
    background-color: #fff;
    position: relative;
    border-bottom: 4px solid #e9ecef;
    margin-bottom: 0;
    padding-bottom: 60px;
    overflow: visible;
    z-index: 5;
}

.stats-section::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #e9ecef;
    z-index: 15;
}

.stats-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #e9ecef;
    z-index: 20;
}

.stat-item {
    text-align: center;
    padding: 20px;
    transition: transform 0.4s ease;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.stat-item:hover {
    transform: translateY(-10px);
}

.stat-icon {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 15px;
    height: 80px;
    width: 80px;
    line-height: 80px;
    border-radius: 50%;
    background-color: var(--light-color);
    display: inline-block;
    transition: all 0.4s ease;
}

.stat-item:hover .stat-icon {
    background-color: var(--primary-color);
    color: #fff;
    transform: rotateY(180deg);
}

.stat-counter {
    font-size: 40px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 10px;
    line-height: 1;
}

.stat-item h4 {
    font-size: 18px;
    margin-bottom: 0;
    color: var(--gray-color);
    font-weight: 600;
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: #fff;
    color: #333;
    position: relative;
    padding: 80px 0;
    border-top: 1px solid #e9ecef;
    border-bottom: 1px solid #e9ecef;
}

.cta-content h2 {
    color: var(--primary-color);
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-content p {
    color: #666;
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== NEWSLETTER ===== */
.newsletter-section h2 {
    margin-bottom: 15px;
}

.newsletter-section p {
    margin-bottom: 30px;
    color: var(--gray-color);
}

.newsletter-form .input-group {
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form .form-control {
    height: 50px;
    border-radius: 5px 0 0 5px;
}

.newsletter-form .btn {
    border-radius: 0 5px 5px 0;
    height: 50px;
}

/* ===== FOOTER ===== */
.footer {
    background-color: #2d6247;
    color: #fff;
    padding: 2rem 0;
}

.footer h3 {
    font-size: 24px;
    color: var(--white-color);
    margin-bottom: 25px;
    position: relative;
}

.footer h3 span {
    color: var(--secondary-color);
}

.footer h3:not(.footer-about h3)::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--secondary-color);
}

.footer-about p {
    margin-bottom: 25px;
}

.social-links {
    display: flex;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    color: var(--white-color);
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--secondary-color);
    color: var(--white-color);
}

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

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: #fff;
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.footer-contact p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.footer-contact p i {
    margin-right: 15px;
    font-size: 18px;
    color: var(--secondary-color);
    width: 25px;
}

@media (max-width: 767.98px) {
    .footer-contact p i {
        color: #ffffff !important; /* Mobil görünümde beyaz renk */
    }
    .footer-contact p {
        color: #ffffff !important; /* Telefon numarası da beyaz olsun */
    }
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    margin-top: 60px;
}

.footer-bottom p {
    margin-bottom: 0;
    color: #fff;
}

.footer-links-bottom a {
    color: #fff;
    margin-left: 20px;
}

.footer-links-bottom a:hover {
    color: var(--secondary-color);
}

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--secondary-color);
    color: var(--white-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
    transform: scale(1.1);
}

/* Mobil için sabit sosyal medya butonları */
.mobile-social-buttons {
    display: none; /* Varsayılan olarak gizli */
}

@media only screen and (max-width: 768px) {
    .mobile-social-buttons {
        display: block !important;
        position: fixed !important;
        right: 20px !important;
        bottom: 20px !important;
        z-index: 9999 !important;
    }
    
    /* Butonların ortak özellikleri */
    .mobile-instagram-btn, .mobile-whatsapp-btn, .back-to-top {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 60px !important;
        height: 60px !important;
        color: white !important;
        border-radius: 50% !important;
        font-size: 30px !important;
        box-shadow: 0 4px 15px rgba(0,0,0,0.2) !important;
        transition: all 0.3s ease !important;
        position: fixed !important;
        right: 20px !important;
        z-index: 9999 !important; /* Daha yüksek z-index değeri */
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    /* Instagram butonu */
    .mobile-instagram-btn {
        background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%) !important;
        bottom: 90px !important; /* Back-to-top butonunun üzerinde */
    }
    
    .mobile-instagram-btn:hover {
        transform: scale(1.1);
        color: white !important;
    }
    
    /* WhatsApp butonu */
    .mobile-whatsapp-btn {
        background-color: #25D366 !important;
        bottom: 160px !important; /* Instagram butonunun üzerinde */
    }
    
    .mobile-whatsapp-btn:hover {
        transform: scale(1.1);
        color: white;
        background-color: #128C7E;
    }
    
    /* Back to top butonu mobilde sağ altta */
    .back-to-top {
        background-color: var(--secondary-color);
        bottom: 30px !important;
        transform: none !important;
    }
    
    .back-to-top.active {
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
    }
    
    /* Menüdeki WhatsApp butonunu mobilde gizle */
    .nav-item .navbar-whatsapp {
        display: none;
    }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1199.98px) {
    .hero-content h1 {
        font-size: 42px;
    }
}

@media (max-width: 991.98px) {
    .section-padding {
        padding: 60px 0;
    }
    
    .hero-section {
        padding: 180px 0 130px;
    }
    
    .hero-content h1 {
        font-size: 36px;
    }
    
    .navbar .navbar-nav {
        margin-top: 15px;
    }
    
    .navbar-nav .nav-item {
        margin: 0;
    }
    
    .about-content {
        padding-left: 0;
        margin-top: 30px;
    }
}

@media (max-width: 767.98px) {
    .section-padding {
        padding: 50px 0;
    }
    
    .hero-section {
        padding: 150px 0 100px;
    }
    
    .hero-content h1 {
        font-size: 30px;
    }
    
    .search-box {
        padding: 20px;
    }
    
    .section-title h2 {
        font-size: 28px;
    }
    
    .footer {
        padding-top: 50px;
    }
    
    .footer-about, .footer-links, .footer-contact {
        margin-bottom: 30px;
    }
    
    .footer-bottom {
        margin-top: 30px;
        text-align: center;
    }
    
    .footer-bottom .text-end {
        text-align: center !important;
        margin-top: 10px;
    }
    
    .footer-links-bottom a {
        margin: 0 10px;
    }
}

@media (max-width: 575.98px) {
    .hero-content h1 {
        font-size: 26px;
    }
    
    .search-form .btn {
        margin-top: 10px;
    }
}

/* Yeni dekoratif elementler */
/* Eğimli kenarlar */
.slant-top {
    position: relative;
    margin-top: -50px;
}

.slant-top:before {
    content: "";
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: 50px;
    background: inherit;
    clip-path: polygon(0 0, 100% 100%, 100% 100%, 0% 100%);
    z-index: 1;
}

.slant-bottom {
    position: relative;
    margin-bottom: -50px;
}

.slant-bottom:after {
    content: "";
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    height: 50px;
    background: inherit;
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 100%);
}

/* Animasyonlar */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* Süslü çerçeveler */
.decorative-border {
    position: relative;
    padding: 30px;
    border: 2px solid var(--secondary-color);
    border-radius: 10px;
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.decorative-border:before {
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    width: 60px;
    height: 60px;
    border-top: 3px solid var(--secondary-color);
    border-left: 3px solid var(--secondary-color);
    border-radius: 10px 0 0 0;
}

.decorative-border:after {
    content: "";
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 60px;
    height: 60px;
    border-bottom: 3px solid var(--secondary-color);
    border-right: 3px solid var(--secondary-color);
    border-radius: 0 0 10px 0;
}

/* ===== CUSTOMER SATISFACTION CAROUSEL ===== */
.testimonials-carousel {
    margin-top: 50px;
}

.testimonials-carousel .carousel {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.testimonials-carousel .carousel-inner {
    border-radius: 15px;
    overflow: hidden;
}

.testimonials-carousel .carousel-item {
    padding: 0;
}

.testimonials-carousel .satisfaction-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transition: all 0.5s ease;
}

.testimonials-carousel .satisfaction-card:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}

.testimonials-carousel .satisfaction-image {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.testimonials-carousel .satisfaction-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.testimonials-carousel .satisfaction-card:hover .satisfaction-image img {
    transform: scale(1.1);
}

.testimonials-carousel .image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    padding: 40px 30px 30px;
    color: white;
    transform: translateY(100%);
    transition: transform 0.5s ease;
}

.testimonials-carousel .satisfaction-card:hover .image-overlay {
    transform: translateY(0);
}

.testimonials-carousel .overlay-content h3 {
    color: white;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.testimonials-carousel .overlay-content p {
    color: #f0f0f0;
    font-size: 16px;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* Carousel Controls */
.testimonials-carousel .carousel-control-prev,
.testimonials-carousel .carousel-control-next {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.testimonials-carousel .carousel-control-prev:hover,
.testimonials-carousel .carousel-control-next:hover {
    opacity: 1;
    background: var(--secondary-color);
    transform: translateY(-50%) scale(1.1);
}

.testimonials-carousel .carousel-control-prev {
    left: -25px;
}

.testimonials-carousel .carousel-control-next {
    right: -25px;
}

/* Carousel Indicators */
.testimonials-carousel .carousel-indicators {
    bottom: -40px;
}

.testimonials-carousel .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--gray-color);
    border: none;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.testimonials-carousel .carousel-indicators button.active {
    background-color: var(--primary-color);
    transform: scale(1.2);
}

/* Responsive Design for Carousel */
@media (max-width: 768px) {
    .testimonials-carousel .satisfaction-image {
        height: 300px;
    }
    
    .testimonials-carousel .overlay-content h3 {
        font-size: 20px;
    }
    
    .testimonials-carousel .overlay-content p {
        font-size: 14px;
    }
    
    .testimonials-carousel .carousel-control-prev,
    .testimonials-carousel .carousel-control-next {
        width: 40px;
        height: 40px;
    }
    
    .testimonials-carousel .carousel-control-prev {
        left: -20px;
    }
    
    .testimonials-carousel .carousel-control-next {
        right: -20px;
    }
}

@media (max-width: 576px) {
    .testimonials-carousel .satisfaction-image {
        height: 250px;
    }
    
    .testimonials-carousel .overlay-content h3 {
        font-size: 18px;
    }
    
    .testimonials-carousel .overlay-content p {
        font-size: 12px;
    }
}

/* Navbar WhatsApp Button */
.navbar-whatsapp {
    background-color: #52b788;
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: 15px;
    border: 2px solid transparent;
}

.navbar-whatsapp:hover {
    background-color: #40916c;
    color: white;
    transform: translateY(-1px);
    border-color: #a8e6bc;
    box-shadow: 0 4px 12px rgba(82, 183, 136, 0.3);
}

.navbar-whatsapp i {
    font-size: 16px;
}

.navbar-whatsapp span {
    font-size: 12px;
}

/* Responsive Navbar WhatsApp Button */
@media (max-width: 768px) {
    .navbar-whatsapp {
        padding: 6px 12px;
        font-size: 12px;
        margin-left: 10px;
    }
    
    .navbar-whatsapp i {
        font-size: 14px;
    }
    
    .navbar-whatsapp span {
        font-size: 11px;
    }
    
    /* Mobil görünümde WhatsApp butonu sabit pozisyonda sağ altta */
    .nav-item .navbar-whatsapp {
        position: fixed;
        bottom: 20px;
        right: 20px;
        z-index: 999;
        margin: 0;
        padding: 10px 15px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    }
}

/* Portfolio Sidebar Styles */
.portfolio-sidebar {
    padding: 20px;
}

.stats-card, .contact-card, .features-card {
    background: var(--white-color);
    border-radius: 15px;
    padding: 25px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(45, 106, 79, 0.1);
    transition: var(--transition);
}

.stats-card:hover, .contact-card:hover, .features-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(45, 106, 79, 0.25);
}

.stats-card .stat-item {
    padding: 15px 10px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(45, 106, 79, 0.05), rgba(64, 145, 108, 0.05));
    transition: var(--transition);
}

.stats-card .stat-item:hover {
    background: linear-gradient(135deg, rgba(45, 106, 79, 0.1), rgba(64, 145, 108, 0.1));
    transform: scale(1.05);
}

.stats-card .stat-item h5 {
    color: var(--primary-color);
    margin-bottom: 5px;
}

.contact-card .btn {
    border-radius: 10px;
    font-weight: 600;
    transition: var(--transition);
}

.contact-card .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(45, 106, 79, 0.3);
}

.feature-list .feature-item {
    padding: 10px 0;
    border-bottom: 1px solid rgba(45, 106, 79, 0.1);
}

.feature-list .feature-item:last-child {
    border-bottom: none;
}

.feature-list .feature-item span {
    font-weight: 500;
    color: var(--dark-color);
}

.feature-list .feature-item i {
    font-size: 1.2em;
}

/* Responsive adjustments for portfolio sidebar */
@media (max-width: 991.98px) {
    .portfolio-sidebar {
        margin-top: 30px;
    }
    
    .stats-card, .contact-card, .features-card, .animation-card {
        margin-bottom: 20px;
    }
}



/* 3D Building Group */
.building-group {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
}

.skyscraper {
    position: absolute;
    bottom: 0;
    transform-style: preserve-3d;
    animation: buildingRotate 20s linear infinite;
}

.skyscraper-1 {
    left: 20%;
    width: 60px;
    height: 200px;
    animation-delay: 0s;
}

.skyscraper-2 {
    left: 60%;
    width: 50px;
    height: 180px;
    animation-delay: -10s;
}

.building-base {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 20px;
    background: linear-gradient(135deg, #2c3e50, #34495e);
    border-radius: 5px;
    transform: translateZ(0px);
}

.building-floors {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    height: calc(100% - 40px);
    background: linear-gradient(135deg, #3498db, #2980b9);
    border-radius: 5px;
    transform: translateZ(0px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.building-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 20px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    border-radius: 5px;
    transform: translateZ(0px);
}

.windows-grid {
    position: absolute;
    top: 25px;
    left: 5px;
    width: calc(100% - 10px);
    height: calc(100% - 50px);
    background-image: 
        linear-gradient(90deg, transparent 0%, transparent 30%, rgba(255,255,255,0.9) 30%, rgba(255,255,255,0.9) 40%, transparent 40%),
        linear-gradient(90deg, transparent 0%, transparent 70%, rgba(255,255,255,0.9) 70%, rgba(255,255,255,0.9) 80%, transparent 80%),
        linear-gradient(0deg, transparent 0%, transparent 20%, rgba(255,255,255,0.9) 20%, rgba(255,255,255,0.9) 30%, transparent 30%),
        linear-gradient(0deg, transparent 0%, transparent 50%, rgba(255,255,255,0.9) 50%, rgba(255,255,255,0.9) 60%, transparent 60%),
        linear-gradient(0deg, transparent 0%, transparent 80%, rgba(255,255,255,0.9) 80%, rgba(255,255,255,0.9) 90%, transparent 90%);
    background-size: 100% 20%, 100% 20%, 100% 20%, 100% 20%, 100% 20%;
    background-position: 0 0%, 0 20%, 0 40%, 0 60%, 0 80%;
    transform: translateZ(5px);
}

/* Modern Villa */
.modern-villa {
    position: absolute;
    bottom: 0;
    left: 40%;
    width: 80px;
    height: 120px;
    transform-style: preserve-3d;
    animation: villaFloat 6s ease-in-out infinite;
}

.villa-base {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 20px;
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    border-radius: 10px;
    transform: translateZ(0px);
}

.villa-walls {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    height: 80px;
    background: linear-gradient(135deg, #ecf0f1, #bdc3c7);
    border-radius: 10px 10px 0 0;
    transform: translateZ(0px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.villa-roof {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 20px;
    background: linear-gradient(135deg, #e67e22, #d35400);
    clip-path: polygon(0 100%, 50% 0, 100% 100%);
    transform: translateZ(0px);
}

.villa-pool {
    position: absolute;
    bottom: 10px;
    left: 10px;
    width: 30px;
    height: 15px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    border-radius: 8px;
    transform: translateZ(5px);
}

.villa-garden {
    position: absolute;
    bottom: 0;
    left: -10px;
    width: calc(100% + 20px);
    height: 10px;
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    border-radius: 5px;
    transform: translateZ(-5px);
}

/* 3D Consultant Character */
.3d-consultant {
    position: absolute;
    bottom: 50px;
    right: 30px;
    width: 100px;
    height: 150px;
    transform-style: preserve-3d;
    animation: consultant3dIdle 4s ease-in-out infinite;
}

.consultant-head {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    transform-style: preserve-3d;
    animation: head3dNod 5s ease-in-out infinite;
}

.head-shape {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f4d03f, #f39c12);
    border-radius: 50%;
    transform: translateZ(0px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.facial-features {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
}

.eyes-container {
    position: absolute;
    top: 15px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-around;
    transform: translateZ(5px);
}

.eye-3d {
    width: 8px;
    height: 8px;
    background: #2c3e50;
    border-radius: 50%;
    animation: blink3d 4s ease-in-out infinite;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

.mouth-3d {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%) translateZ(5px);
    width: 15px;
    height: 6px;
    background: #e74c3c;
    border-radius: 3px;
    animation: smile3d 6s ease-in-out infinite;
}

.hair-3d {
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%) translateZ(2px);
    width: 45px;
    height: 20px;
    background: linear-gradient(135deg, #2c3e50, #34495e);
    border-radius: 20px 20px 0 0;
    box-shadow: 0 3px 10px rgba(0,0,0,0.3);
}

/* 3D Body */
.consultant-body-3d {
    position: absolute;
    top: 45px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 80px;
    transform-style: preserve-3d;
}

.torso-3d {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
}

.suit-jacket {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2c3e50, #34495e);
    border-radius: 35px 35px 0 0;
    transform: translateZ(0px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.tie-3d {
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%) translateZ(5px);
    width: 10px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

.shirt-collar {
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%) translateZ(3px);
    width: 30px;
    height: 15px;
    background: linear-gradient(135deg, #ecf0f1, #bdc3c7);
    border-radius: 15px 15px 0 0;
}

/* 3D Arms */
.arms-3d {
    position: absolute;
    top: 10px;
    left: 0;
    width: 100%;
    height: 70px;
    transform-style: preserve-3d;
}

.arm-3d {
    position: absolute;
    width: 15px;
    height: 50px;
    transform-style: preserve-3d;
}

.left-arm-3d {
    left: -10px;
    transform: rotateY(-20deg) rotateZ(-15deg);
    animation: leftArm3dWave 5s ease-in-out infinite;
}

.right-arm-3d {
    right: -10px;
    transform: rotateY(20deg) rotateZ(15deg);
}

.upper-arm {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 25px;
    background: linear-gradient(135deg, #f4d03f, #f39c12);
    border-radius: 8px;
    transform: translateZ(0px);
}

.forearm {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 25px;
    background: linear-gradient(135deg, #f4d03f, #f39c12);
    border-radius: 8px;
    transform: translateZ(0px);
}

.hand-3d {
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 18px;
    height: 18px;
    background: linear-gradient(135deg, #f4d03f, #f39c12);
    border-radius: 50%;
    transform: translateZ(0px);
    box-shadow: 0 3px 8px rgba(0,0,0,0.3);
}

.pointing-finger-3d {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 15px;
    background: linear-gradient(135deg, #f4d03f, #f39c12);
    border-radius: 2px;
    animation: pointLeft3d 4s ease-in-out infinite;
    transform: translateZ(2px);
}

/* 3D Legs */
.consultant-legs-3d {
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 60px;
    display: flex;
    justify-content: space-between;
    transform-style: preserve-3d;
}

.leg-3d {
    width: 18px;
    height: 50px;
    transform-style: preserve-3d;
    animation: leg3dWalk 3s ease-in-out infinite;
}

.thigh {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 25px;
    background: linear-gradient(135deg, #34495e, #2c3e50);
    border-radius: 9px;
    transform: translateZ(0px);
}

.shin {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 25px;
    background: linear-gradient(135deg, #34495e, #2c3e50);
    border-radius: 9px;
    transform: translateZ(0px);
}

.foot-3d {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 25px;
    height: 10px;
    background: linear-gradient(135deg, #2c3e50, #34495e);
    border-radius: 5px;
    transform: translateZ(0px);
    box-shadow: 0 3px 8px rgba(0,0,0,0.3);
}

/* 3D Speech Bubble */
.3d-speech-bubble {
    position: absolute;
    top: 30px;
    left: 30px;
    width: 220px;
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    animation: bubble3dFloat 4s ease-in-out infinite;
    transform: translateZ(10px);
}

.bubble-3d-content {
    position: relative;
    height: 70px;
    overflow: hidden;
}

.bubble-3d-text {
    position: absolute;
    width: 100%;
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.6s ease;
}

.bubble-3d-text.active {
    opacity: 1;
    transform: translateY(0);
}

.bubble-3d-text h6 {
    margin: 0 0 8px 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.1em;
}

.bubble-3d-text p {
    margin: 0;
    font-size: 0.9em;
    color: var(--gray-color);
}

.bubble-3d-tail {
    position: absolute;
    bottom: -15px;
    left: 40px;
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 15px solid #ffffff;
    filter: drop-shadow(0 5px 10px rgba(0,0,0,0.1));
}

/* 3D Pointing Line */
.3d-pointing-line {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 3px;
    animation: line3dExtend 5s ease-in-out infinite;
    transform-style: preserve-3d;
}

.line-3d {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    border-radius: 2px;
    transform: translateZ(5px);
    box-shadow: 0 2px 8px rgba(45, 106, 79, 0.4);
}

.arrow-3d {
    position: absolute;
    top: -6px;
    right: -8px;
    width: 0;
    height: 0;
    border-left: 12px solid var(--accent-color);
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    transform: translateZ(5px);
    filter: drop-shadow(0 2px 4px rgba(45, 106, 79, 0.4));
}

/* 3D Particles */
.3d-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    transform-style: preserve-3d;
}

.particle-3d {
    position: absolute;
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    border-radius: 50%;
    animation: particle3dFloat 5s ease-in-out infinite;
    box-shadow: 0 3px 10px rgba(45, 106, 79, 0.4);
}

.p3d-1 { top: 15%; left: 10%; animation-delay: 0s; }
.p3d-2 { top: 25%; right: 15%; animation-delay: 1s; }
.p3d-3 { bottom: 25%; left: 15%; animation-delay: 2s; }
.p3d-4 { bottom: 15%; right: 10%; animation-delay: 3s; }
.p3d-5 { top: 50%; left: 50%; animation-delay: 4s; }
.p3d-6 { top: 35%; left: 30%; animation-delay: 5s; }

/* 3D Lighting */
.3d-lighting {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.light-source {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, rgba(255,255,255,0.8) 0%, rgba(255,255,255,0.2) 50%, transparent 100%);
    border-radius: 50%;
    animation: lightPulse 3s ease-in-out infinite;
}

.shadow-cast {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.3) 0%, transparent 100%);
    border-radius: 0 0 15px 15px;
}

/* 3D Stats */
.3d-stats {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
}

.stat-3d-item {
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(45, 106, 79, 0.08), rgba(64, 145, 108, 0.08));
    padding: 18px;
    border-radius: 15px;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(45, 106, 79, 0.1);
}

.stat-3d-item:hover {
    transform: scale(1.08) translateY(-3px);
    background: linear-gradient(135deg, rgba(45, 106, 79, 0.15), rgba(64, 145, 108, 0.15));
    box-shadow: 0 8px 25px rgba(45, 106, 79, 0.2);
}

.stat-3d-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-right: 12px;
    box-shadow: 0 3px 10px rgba(45, 106, 79, 0.3);
}

.stat-3d-content h5 {
    margin: 0;
    color: var(--primary-color);
    font-size: 1.2em;
}

.stat-3d-content small {
    color: var(--gray-color);
    font-weight: 500;
}

/* Professional 3D Animations */
@keyframes buildingRotate {
    0% { transform: rotateY(0deg); }
    100% { transform: rotateY(360deg); }
}

@keyframes villaFloat {
    0%, 100% { transform: translateY(0px) rotateY(0deg); }
    50% { transform: translateY(-8px) rotateY(5deg); }
}

@keyframes consultant3dIdle {
    0%, 100% { transform: translateY(0px) rotateY(0deg); }
    50% { transform: translateY(-3px) rotateY(2deg); }
}

@keyframes head3dNod {
    0%, 100% { transform: translateX(-50%) rotateX(0deg); }
    25% { transform: translateX(-50%) rotateX(-3deg); }
    75% { transform: translateX(-50%) rotateX(3deg); }
}

@keyframes blink3d {
    0%, 90%, 100% { transform: scaleY(1); }
    95% { transform: scaleY(0.1); }
}

@keyframes smile3d {
    0%, 100% { transform: translateX(-50%) scaleX(1); }
    50% { transform: translateX(-50%) scaleX(1.3); }
}

@keyframes leftArm3dWave {
    0%, 100% { transform: rotateY(-20deg) rotateZ(-15deg); }
    50% { transform: rotateY(-30deg) rotateZ(-25deg); }
}

@keyframes pointLeft3d {
    0%, 100% { transform: translateX(-50%) rotate(0deg); }
    50% { transform: translateX(-50%) rotate(-15deg); }
}

@keyframes leg3dWalk {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-3px); }
}

@keyframes bubble3dFloat {
    0%, 100% { transform: translateY(0px) translateZ(10px); }
    50% { transform: translateY(-5px) translateZ(15px); }
}

@keyframes line3dExtend {
    0% { width: 0px; }
    50% { width: 120px; }
    100% { width: 120px; }
}

@keyframes particle3dFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg) translateZ(0px); }
    50% { transform: translateY(-12px) rotate(180deg) translateZ(10px); }
}

@keyframes lightPulse {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

/* ===== PORTFOLIO SIDEBAR STYLES ===== */
.stat-item {
    padding: 15px;
    border-radius: 10px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(45, 106, 79, 0.15);
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 5px;
    display: block;
}

.contact-info .contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border-radius: 8px;
    background: #f8f9fa;
    transition: var(--transition);
}

.contact-info .contact-item:hover {
    background: var(--light-color);
    transform: translateX(5px);
}

.contact-info .contact-item span {
    font-weight: 600;
    color: var(--primary-color);
}

.features-list .feature-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    border-radius: 8px;
    background: #f8f9fa;
    transition: var(--transition);
}

.features-list .feature-item:hover {
    background: var(--light-color);
    transform: translateX(5px);
}

.features-list .feature-item span {
    font-weight: 600;
    color: var(--primary-color);
}

/* Category Items */
.category-item {
    text-align: center;
    padding: 15px 10px;
    border-radius: 10px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    transition: var(--transition);
    border: 2px solid transparent;
}

.category-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(45, 106, 79, 0.15);
    border-color: var(--secondary-color);
}

.category-item i {
    font-size: 2rem;
    margin-bottom: 10px;
    display: block;
}

.category-item h6 {
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.category-item small {
    color: var(--gray-color);
    font-size: 0.85rem;
}

/* Feature Highlights */
.feature-highlight {
    text-align: center;
    padding: 10px;
    border-radius: 8px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    transition: var(--transition);
}

.feature-highlight:hover {
    background: var(--light-color);
    transform: translateY(-2px);
}

.feature-highlight i {
    font-size: 1.2rem;
    margin-bottom: 5px;
    display: block;
}

.feature-highlight small {
    font-weight: 600;
    color: var(--primary-color);
}

/* Neon Card Effect */
.neon-card {
    border: 2px solid transparent;
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    box-shadow: 0 8px 25px rgba(45, 106, 79, 0.1);
    transition: var(--transition);
}

.neon-card:hover {
    border-color: var(--secondary-color);
    box-shadow: 0 12px 35px rgba(45, 106, 79, 0.2);
    transform: translateY(-5px);
}

/* Overlay Content */
.overlay-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(45, 106, 79, 0.8), rgba(64, 145, 108, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.property-card:hover .overlay-content {
    opacity: 1;
}

.overlay-content h2 {
    color: var(--white-color);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.overlay-content p {
    color: var(--white-color);
    font-size: 1.1rem;
    margin-bottom: 0;
}

/* Property Badge */
.property-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 8px 15px;
    border-radius: 20px;
    z-index: 10;
}

/* Property Image */
.property-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
    transition: var(--transition);
}

.property-card:hover .property-image {
    transform: scale(1.05);
}

/* ===== ANIMASYONLU EMLAK DANIŞMANI ===== */
.consultant-animation {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 20;
    pointer-events: none;
}

.consultant-character {
    position: relative;
    width: 120px;
    height: 200px;
    animation: consultantFloat 3s ease-in-out infinite;
}

/* Baş Animasyonu */
.consultant-head {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 50px;
    z-index: 10;
}

.head-shape {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ffdbac, #f4c2a1);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    position: relative;
    animation: headNod 4s ease-in-out infinite;
}

.facial-features {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
}

.eyes-container {
    position: absolute;
    top: 35%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.eye-3d {
    width: 6px;
    height: 8px;
    background: #2d6a4f;
    border-radius: 50%;
    animation: blink 3s ease-in-out infinite;
}

.mouth-3d {
    position: absolute;
    bottom: 25%;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 4px;
    background: #d4a574;
    border-radius: 0 0 12px 12px;
    animation: smile 5s ease-in-out infinite;
}

.hair-3d {
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 45px;
    height: 25px;
    background: linear-gradient(135deg, #8b4513, #a0522d);
    border-radius: 50% 50% 0 0;
    z-index: -1;
}

/* Vücut Animasyonu */
.consultant-body-3d {
    position: absolute;
    top: 45px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 120px;
    animation: bodySway 4s ease-in-out infinite;
}

.torso-3d {
    width: 100%;
    height: 60px;
    position: relative;
}

.suit-jacket {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2d6a4f, #40916c);
    border-radius: 15px 15px 0 0;
    position: relative;
}

.tie-3d {
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 40px;
    background: linear-gradient(135deg, #d4af37, #ffd700);
    border-radius: 0 0 4px 4px;
}

.shirt-collar {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 15px;
    background: #ffffff;
    border-radius: 0 0 10px 10px;
}

/* Kollar */
.arms-3d {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 40px;
    display: flex;
    justify-content: space-between;
}

.arm-3d {
    width: 35px;
    height: 100%;
    position: relative;
}

.left-arm-3d {
    animation: leftArmWave 3s ease-in-out infinite;
}

.right-arm-3d {
    animation: rightArmWave 3s ease-in-out infinite;
}

.upper-arm {
    width: 100%;
    height: 50%;
    background: linear-gradient(135deg, #ffdbac, #f4c2a1);
    border-radius: 20px;
    position: relative;
}

.forearm {
    width: 100%;
    height: 50%;
    background: linear-gradient(135deg, #ffdbac, #f4c2a1);
    border-radius: 20px;
    position: relative;
    top: -5px;
}

.hand-3d {
    width: 12px;
    height: 15px;
    background: linear-gradient(135deg, #ffdbac, #f4c2a1);
    border-radius: 50%;
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
}

.pointing-finger-3d {
    width: 3px;
    height: 8px;
    background: linear-gradient(135deg, #ffdbac, #f4c2a1);
    border-radius: 2px;
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    animation: pointFinger 2s ease-in-out infinite;
}

/* Bacaklar */
.consultant-legs-3d {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: space-between;
}

.leg-3d {
    width: 25px;
    height: 100%;
    position: relative;
}

.left-leg-3d {
    animation: leftLegWalk 4s ease-in-out infinite;
}

.right-leg-3d {
    animation: rightLegWalk 4s ease-in-out infinite;
}

.thigh {
    width: 100%;
    height: 50%;
    background: linear-gradient(135deg, #2d6a4f, #40916c);
    border-radius: 15px;
    position: relative;
}

.shin {
    width: 100%;
    height: 50%;
    background: linear-gradient(135deg, #2d6a4f, #40916c);
    border-radius: 15px;
    position: relative;
    top: -5px;
}

.foot-3d {
    width: 15px;
    height: 8px;
    background: linear-gradient(135deg, #2d6a4f, #40916c);
    border-radius: 0 0 8px 8px;
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
}

/* Konuşma Balonu */
.speech-bubble {
    position: absolute;
    top: -80px;
    right: -20px;
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    border: 2px solid var(--secondary-color);
    border-radius: 15px;
    padding: 15px;
    box-shadow: 0 5px 15px rgba(45, 106, 79, 0.2);
    animation: bubbleFloat 3s ease-in-out infinite;
    max-width: 200px;
}

.bubble-content h6 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.bubble-content p {
    color: var(--gray-color);
    font-size: 0.8rem;
    margin-bottom: 0;
    line-height: 1.3;
}

.bubble-tail {
    position: absolute;
    bottom: -10px;
    left: 20px;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid var(--secondary-color);
}

/* Parçacıklar */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.particle {
    position: absolute;
    font-size: 1.2rem;
    animation: particleFloat 4s ease-in-out infinite;
    opacity: 0.8;
}

.particle:nth-child(1) { top: 10%; left: 10%; animation-delay: 0s; }
.particle:nth-child(2) { top: 20%; right: 15%; animation-delay: 1s; }
.particle:nth-child(3) { bottom: 30%; left: 15%; animation-delay: 2s; }
.particle:nth-child(4) { bottom: 20%; right: 10%; animation-delay: 3s; }
.particle:nth-child(5) { top: 50%; left: 50%; animation-delay: 4s; }
.particle:nth-child(6) { top: 35%; left: 30%; animation-delay: 5s; }

/* Animasyon Keyframes */
@keyframes consultantFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
}

@keyframes headNod {
    0%, 100% { transform: translateX(-50%) rotateX(0deg); }
    25% { transform: translateX(-50%) rotateX(-3deg); }
    75% { transform: translateX(-50%) rotateX(3deg); }
}

@keyframes blink {
    0%, 90%, 100% { transform: scaleY(1); }
    95% { transform: scaleY(0.1); }
}

@keyframes smile {
    0%, 100% { transform: translateX(-50%) scaleX(1); }
    50% { transform: translateX(-50%) scaleX(1.3); }
}

@keyframes bodySway {
    0%, 100% { transform: translateX(-50%) rotateY(0deg); }
    50% { transform: translateX(-50%) rotateY(2deg); }
}

@keyframes leftArmWave {
    0%, 100% { transform: rotateY(-20deg) rotateZ(-15deg); }
    50% { transform: rotateY(-30deg) rotateZ(-25deg); }
}

@keyframes rightArmWave {
    0%, 100% { transform: rotateY(20deg) rotateZ(15deg); }
    50% { transform: rotateY(30deg) rotateZ(25deg); }
}

@keyframes pointFinger {
    0%, 100% { transform: translateX(-50%) rotate(0deg); }
    50% { transform: translateX(-50%) rotate(-15deg); }
}

@keyframes leftLegWalk {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-3px); }
}

@keyframes rightLegWalk {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-3px); }
    animation-delay: 0.5s;
}

@keyframes bubbleFloat {
    0%, 100% { transform: translateY(0px) translateZ(0px); }
    50% { transform: translateY(-3px) translateZ(5px); }
}

@keyframes particleFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.8; }
    50% { transform: translateY(-10px) rotate(180deg); opacity: 1; }
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .consultant-animation {
        top: 10px;
        left: 10px;
        transform: scale(0.8);
    }
    
    .speech-bubble {
        max-width: 150px;
        padding: 10px;
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .consultant-animation {
        display: none;
    }
}

/* ===== BÜYÜK ANİMASYONLU EMLAK DANIŞMANI ===== */
.consultant-showcase {
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 15px;
    padding: 20px;
}

/* ===== EMLAK DANIŞMANI KARAKTERİ ===== */
.consultant-image-container {
    position: relative;
    width: 100%;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.consultant-character-image {
    max-width: 100%;
    max-height: 400px;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.2));
    animation: characterFloat 3s ease-in-out infinite;
}

.speech-bubble-custom {
    position: absolute;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    width: 280px;
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    border: 3px solid #2d6a4f;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    animation: bubbleFloat 4s ease-in-out infinite;
    z-index: 10;
}

.bubble-content-custom h5 {
    margin: 0 0 10px 0;
    color: #2d6a4f;
    font-weight: 700;
    font-size: 1.2em;
}

.bubble-content-custom p {
    margin: 0;
    font-size: 0.95em;
    color: #666;
    line-height: 1.4;
}

.bubble-tail-custom {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 15px solid #ffffff;
    filter: drop-shadow(0 5px 10px rgba(0,0,0,0.1));
}

.particles-custom {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.particle-custom {
    position: absolute;
    font-size: 1.5em;
    opacity: 0.8;
    animation: particleFloat 6s ease-in-out infinite;
}

.particle-custom:nth-child(1) { top: 10%; left: 10%; animation-delay: 0s; }
.particle-custom:nth-child(2) { top: 20%; right: 15%; animation-delay: 1s; }
.particle-custom:nth-child(3) { bottom: 30%; left: 15%; animation-delay: 2s; }
.particle-custom:nth-child(4) { bottom: 20%; right: 10%; animation-delay: 3s; }
.particle-custom:nth-child(5) { top: 50%; left: 50%; animation-delay: 4s; }
.particle-custom:nth-child(6) { top: 35%; left: 30%; animation-delay: 5s; }

@keyframes characterFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes bubbleFloat {
    0%, 100% { transform: translateX(-50%) translateY(0px); }
    50% { transform: translateX(-50%) translateY(-5px); }
}

@keyframes particleFloat {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg); 
        opacity: 0.8;
    }
    50% { 
        transform: translateY(-20px) rotate(180deg); 
        opacity: 1;
    }
}
    width: 140px;
    height: 280px;
    animation: bodySwayLarge 4s ease-in-out infinite;
}

.torso-3d-large {
    width: 100%;
    height: 140px;
    position: relative;
}

.suit-jacket-large {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2d6a4f, #40916c);
    border-radius: 30px 30px 0 0;
    position: relative;
}

.tie-3d-large {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 60px;
    background: linear-gradient(135deg, #d4af37, #ffd700);
    border-radius: 0 0 6px 6px;
}

.shirt-collar-large {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 20px;
    background: #ffffff;
    border-radius: 0 0 15px 15px;
}

/* Büyük Kollar */
.arms-3d-large {
    position: absolute;
    top: 25px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 100px;
    display: flex;
    justify-content: space-between;
}

.arm-3d-large {
    width: 80px;
    height: 100%;
    position: relative;
}

.left-arm-3d-large {
    animation: leftArmWaveLarge 3s ease-in-out infinite;
}

.right-arm-3d-large {
    animation: rightArmWaveLarge 3s ease-in-out infinite;
}

.upper-arm-large {
    width: 100%;
    height: 50%;
    background: linear-gradient(135deg, #ffdbac, #f4c2a1);
    border-radius: 25px;
    position: relative;
}

.forearm-large {
    width: 100%;
    height: 50%;
    background: linear-gradient(135deg, #ffdbac, #f4c2a1);
    border-radius: 25px;
    position: relative;
    top: -8px;
}

.hand-3d-large {
    width: 18px;
    height: 22px;
    background: linear-gradient(135deg, #ffdbac, #f4c2a1);
    border-radius: 50%;
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
}

.pointing-finger-3d-large {
    width: 4px;
    height: 12px;
    background: linear-gradient(135deg, #ffdbac, #f4c2a1);
    border-radius: 2px;
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    animation: pointFingerLarge 2s ease-in-out infinite;
}

/* Büyük Bacaklar */
.consultant-legs-3d-large {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 140px;
    display: flex;
    justify-content: space-between;
}

.leg-3d-large {
    width: 55px;
    height: 100%;
    position: relative;
}

.left-leg-3d-large {
    animation: leftLegWalkLarge 4s ease-in-out infinite;
}

.right-leg-3d-large {
    animation: rightLegWalkLarge 4s ease-in-out infinite;
}

.thigh-large {
    width: 100%;
    height: 50%;
    background: linear-gradient(135deg, #2d6a4f, #40916c);
    border-radius: 20px;
    position: relative;
}

.shin-large {
    width: 100%;
    height: 50%;
    background: linear-gradient(135deg, #2d6a4f, #40916c);
    border-radius: 20px;
    position: relative;
    top: -8px;
}

.foot-3d-large {
    width: 22px;
    height: 12px;
    background: linear-gradient(135deg, #2d6a4f, #40916c);
    border-radius: 0 0 12px 12px;
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
}

/* Büyük Konuşma Balonu */
.speech-bubble-large {
    position: absolute;
    top: -180px;
    left: -50px;
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    border: 4px solid var(--secondary-color);
    border-radius: 25px;
    padding: 25px;
    box-shadow: 0 12px 35px rgba(45, 106, 79, 0.3);
    animation: bubbleFloatLarge 3s ease-in-out infinite;
    max-width: 300px;
    z-index: 100;
}

.bubble-content-large h5 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 1.4rem;
}

.bubble-content-large p {
    color: var(--gray-color);
    font-size: 1.1rem;
    margin-bottom: 0;
    line-height: 1.5;
}

.bubble-tail-large {
    position: absolute;
    bottom: -20px;
    left: 80px;
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 20px solid var(--secondary-color);
}

/* Büyük Parçacıklar */
.particles-large {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.particle-large {
    position: absolute;
    font-size: 2.5rem;
    animation: particleFloatLarge 4s ease-in-out infinite;
    opacity: 0.9;
}

.particle-large:nth-child(1) { top: 10%; left: 10%; animation-delay: 0s; }
.particle-large:nth-child(2) { top: 20%; right: 15%; animation-delay: 1s; }
.particle-large:nth-child(3) { bottom: 30%; left: 15%; animation-delay: 2s; }
.particle-large:nth-child(4) { bottom: 20%; right: 10%; animation-delay: 3s; }
.particle-large:nth-child(5) { top: 50%; left: 50%; animation-delay: 4s; }
.particle-large:nth-child(6) { top: 35%; left: 30%; animation-delay: 5s; }

/* Responsive Tasarım */
@media (max-width: 768px) {
    .consultant-image-container {
        height: 400px;
    }
    
    .consultant-character-image {
        max-height: 300px;
    }
    
    .speech-bubble-custom {
        max-width: 200px;
        padding: 15px;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .consultant-image-container {
        height: 350px;
    }
    
    .consultant-character-image {
        max-height: 250px;
    }
    
    .speech-bubble-custom {
        max-width: 180px;
        padding: 12px;
        font-size: 0.8rem;
    }
}

/* ===== AUDIO CONTROL ===== */
.audio-control-bottom {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: none;
}

.audio-btn-bottom {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(45, 106, 79, 0.3);
    transition: all 0.3s ease;
    opacity: 0.8;
}

.audio-btn-bottom:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(45, 106, 79, 0.4);
    opacity: 1;
}

.audio-btn-bottom:active {
    transform: scale(0.95);
}

/* Responsive Audio Control */
@media (max-width: 768px) {
    .audio-control-bottom {
        bottom: 20px;
        right: 20px;
    }
    
    .audio-btn-bottom {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .audio-control-bottom {
        bottom: 15px;
        right: 15px;
    }
    
    .audio-btn-bottom {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
}