/* Base Styles */
:root {
    --gold: #D4AF37;
    --dark: #252525;
    --light: #f8f8f8;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: var(--light);
    color: var(--dark);
    line-height: 1.6;
}

a {
    text-decoration: none;
}

/* Header Styles */
header {
    background-color: var(--dark);
    color: var(--light);
    padding: 1rem;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: bold;
}

.logo span {
    color: var(--gold);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--light);
    cursor: pointer;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 1.5rem;
}

nav ul li a {
    color: var(--light);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

nav ul li a:hover,
nav ul li a.active {
    color: var(--gold);
}

/* Hero Section */
.advisors-hero {
    height: 400px;
    background-image: linear-gradient(rgba(37, 37, 37, 0.7), rgba(37, 37, 37, 0.7)), url(https://www.kayaemlakyatirimdanismanlik.com.tr/resim/kaya.png);
        background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--light);
}

.advisors-hero-content {
    max-width: 800px;
    padding: 0 1rem;
}

.advisors-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.advisors-hero p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

/* Breadcrumb */
.breadcrumb {
    background-color: white;
    padding: 0.8rem 0;
    border-bottom: 1px solid #eee;
}

.breadcrumb-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.breadcrumb ul {
    display: flex;
    list-style: none;
}

.breadcrumb ul li {
    font-size: 0.9rem;
    color: #777;
}

.breadcrumb ul li:not(:last-child):after {
    content: "/";
    margin: 0 0.5rem;
    color: #ccc;
}

.breadcrumb ul li a {
    color: #777;
    text-decoration: none;
}

.breadcrumb ul li a:hover {
    color: var(--gold);
}

/* Search & Filter Section */
.advisor-search {
    background-color: white;
    padding: 2rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 3rem;
}

.search-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1rem;
}

.search-box {
    display: flex;
    flex: 1;
    min-width: 300px;
}

.search-box input {
    flex: 1;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px 0 0 4px;
    font-size: 0.95rem;
}

.search-button {
    background-color: var(--gold);
    color: white;
    border: none;
    padding: 0 1.5rem;
    border-radius: 0 4px 4px 0;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

.search-button:hover {
    background-color: #c9a227;
}

.filter-box {
    display: flex;
    gap: 1rem;
    flex: 1;
    min-width: 300px;
}

.filter-box select {
    flex: 1;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 0.95rem;
    color: #555;
}

/* Section Titles */
.section-title {
    text-align: center;
    margin-bottom: 2.5rem;
    font-size: 1.8rem;
    position: relative;
    color: var(--dark);
}

.section-title:after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: var(--gold);
    margin: 0.8rem auto 0;
}

/* Featured Advisors */
.featured-advisors {
    padding: 3rem 0;
}

.featured-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.featured-advisors-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.featured-advisor-card {
    display: flex;
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.featured-advisor-card:hover {
    transform: translateY(-5px);
}

.featured-advisor-card .advisor-image {
    width: 40%;
    position: relative;
}

.featured-advisor-card .advisor-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.advisor-badge {
    position: absolute;
    top: 15px;
    left: 0;
    background-color: var(--gold);
    color: white;
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    font-weight: bold;
    border-radius: 0 4px 4px 0;
}

.featured-advisor-card .advisor-content {
    width: 60%;
    padding: 2rem;
}

.advisor-name {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.advisor-title {
    color: #666;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.advisor-stats {
    display: flex;
    gap: 20px;
    margin-bottom: 1.5rem;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--gold);
}

.stat-label {
    font-size: 0.8rem;
    color: #777;
}

.advisor-specialties {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 1.5rem;
}

.specialty {
    background-color: var(--light);
    color: var(--dark);
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.8rem;
}

.advisor-contact {
    display: flex;
    gap: 10px;
}

.contact-button {
    padding: 0.7rem 1.5rem;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: bold;
    transition: all 0.3s;
}

.contact-button.phone {
    background-color: var(--gold);
    color: white;
}

.contact-button.email {
    background-color: var(--light);
    color: var(--dark);
    border: 1px solid #ddd;
}

.contact-button.profile {
    background-color: var(--dark);
    color: white;
}

.contact-button:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

/* All Advisors */
.all-advisors {
    padding: 3rem 0;
    background-color: #f5f5f5;
}

.advisors-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.advisors-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.advisor-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

.advisor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.advisor-card .advisor-image {
    height: 250px;
    position: relative;
    overflow: hidden;
}

.advisor-card .advisor-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.advisor-card:hover .advisor-image img {
    transform: scale(1.05);
}

.advisor-card .advisor-content {
    padding: 1.5rem;
    text-align: center;
}

.advisor-card .advisor-name {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}

.advisor-card .advisor-title {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.advisor-location {
    color: #777;
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
}

.advisor-rating {
    margin-bottom: 1.2rem;
}

.stars {
    color: var(--gold);
    letter-spacing: 2px;
}

.rating-count {
    color: #777;
    font-size: 0.8rem;
}

.advisor-contact {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.contact-icon {

    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--light);
    color: var(--dark);
    transition: all 0.3s;
    font-size: 1.2rem;
}

.contact-icon:hover {
    background-color: var(--gold);
    color: white;
}

/* Join Our Team Section */
.join-team {
    padding: 4rem 0;
    background-color: white;
}

.join-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.join-content {
    padding-right: 2rem;
}

.join-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.join-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #555;
}

.benefits {
    list-style-type: none;
    margin-bottom: 2rem;
}

.benefits li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 2rem;
    font-size: 1rem;
    color: #555;
}

.benefits li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
}

.join-button {
    display: inline-block;
    background-color: var(--gold);
    color: white;
    padding: 1rem 2rem;
    border-radius: 4px;
    font-weight: bold;
    font-size: 1rem;
    transition: all 0.3s;
}

.join-button:hover {
    background-color: var(--dark);
    transform: translateY(-3px);
}

.join-image {
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
}

.join-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Testimonials */
.testimonials {
    padding: 4rem 0;
    background-color: var(--dark);
    color: white;
}

.testimonials-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
}

.testimonials .section-title {
    color: white;
}

.testimonial-slider {
    position: relative;
}

.testimonial-slide {
    text-align: center;
    padding: 1rem;
}

.testimonial-quote {
    font-size: 1.5rem;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 2rem;
    position: relative;
}

.testimonial-quote:before,
.testimonial-quote:after {
    content: '"';
    color: var(--gold);
    font-size: 3rem;
    position: absolute;
}

.testimonial-quote:before {
    top: -20px;
    left: -20px;
}

.testimonial-quote:after {
    bottom: -40px;
    right: -20px;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.author-name {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 0.3rem;
}

.author-info {
    color: #aaa;
    font-size: 0.9rem;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 2rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #555;
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background-color: var(--gold);
    transform: scale(1.2);
}

/* Footer */
footer {
    background-color: var(--dark);
    color: var(--light);
    padding: 3rem 1rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.footer-col h3 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-col h3:after {
    content: "";
    display: block;
    width: 50px;
    height: 2px;
    background-color: var(--gold);
    margin-top: 10px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col ul li a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: var(--gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid #333;
    font-size: 0.9rem;
    color: #777;
    max-width: 1200px;
    margin: 2rem auto 0;
}

/* Media Queries */
@media (max-width: 1100px) {
    .advisors-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .featured-advisors-grid {
        grid-template-columns: 1fr;
    }
    
    .advisors-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .join-container {
        grid-template-columns: 1fr;
    }
    
    .join-content {
        padding-right: 0;
        order: 2;
    }
    
    .join-image {
        order: 1;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }
    
    nav {
        position: fixed;
        top: 70px;
        left: -100%;
        background-color: var(--dark);
        width: 100%;
        height: calc(100vh - 70px);
        transition: 0.3s;
        padding: 2rem;
    }
    
    nav.active {
        left: 0;
    }
    
    nav ul {
        flex-direction: column;
    }
    
    nav ul li {
        margin: 1rem 0;
    }
    
    .featured-advisor-card {
        flex-direction: column;
    }
    
    .featured-advisor-card .advisor-image,
    .featured-advisor-card .advisor-content {
        width: 100%;
    }
    
    .featured-advisor-card .advisor-image {
        height: 300px;
    }
    
    .search-container {
        flex-direction: column;
    }
    
    .search-box,
    .filter-box {
        width: 100%;
    }
}

@media (max-width: 580px) {
    .advisors-grid {
        grid-template-columns: 1fr;
    }
    
    .advisors-hero h1 {
        font-size: 2rem;
    }
    
    .testimonial-quote {
        font-size: 1.2rem;
    }
    
    .testimonial-quote:before,
    .testimonial-quote:after {
        font-size: 2rem;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.advisor-card, .featured-advisor-card {
    animation: fadeIn 0.5s ease-out forwards;
}

/* Hover Effects for Cards */
.advisor-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 1;
    pointer-events: none;
}

.advisor-card:hover::before {
    opacity: 1;
}

/* Badge Animations */
.advisor-badge {
    transition: all 0.3s;
}

.featured-advisor-card:hover .advisor-badge {
    background-color: var(--dark);
}

/* Interactive Stats */
.stat {
    transition: all 0.3s;
    cursor: pointer;
}

.stat:hover {
    transform: translateY(-5px);
}

.stat:hover .stat-value {
    color: var(--dark);
}