body {
    padding-top: 76px;
}

.content-wrapper {
    min-height: calc(100vh - 300px);
}

.hero-section {
    position: relative;
    height: 600px;
    background-image: url('assets/images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.property-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.property-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.property-card img {
    height: 250px;
    object-fit: cover;
}

.price {
    font-size: 1.25rem;
    font-weight: bold;
    color: #2c3e50;
}

.social-links a {
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #007bff !important;
}

/* Hakkımızda Sayfası Stilleri */
.about-hero {
    position: relative;
    height: 400px;
    background-image: url('assets/images/about-hero.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    display: flex;
    align-items: center;
}

.feature-box {
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
}

.team-member {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.team-member img {
    width: 200px;
    height: 200px;
    object-fit: cover;
}

/* İletişim Sayfası Stilleri */
.contact-hero {
    position: relative;
    height: 400px;
    background-image: url('assets/images/contact-hero.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    display: flex;
    align-items: center;
}

.contact-form-wrapper {
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.contact-info i {
    width: 40px;
}

.working-hours {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

/* Genel Animasyonlar */
.fade-in {
    animation: fadeIn 1s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Gayrimenkuller Sayfası Stilleri */
.properties-hero {
    position: relative;
    height: 400px;
    background-image: url('assets/images/properties-hero.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    display: flex;
    align-items: center;
}

.property-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: #28a745;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    z-index: 1;
}

.tag-rent {
    background-color: #007bff;
}

.location {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.property-features {
    display: flex;
    justify-content: space-between;
    margin: 15px 0;
    color: #666;
    font-size: 0.9rem;
}

.property-features span i {
    margin-right: 5px;
    color: #007bff;
}

.filter-section {
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.property-filter select {
    border: 1px solid #ddd;
    height: 45px;
}

.property-filter .btn {
    height: 45px;
}

/* Sayfalama Stilleri */
.pagination .page-link {
    color: #333;
    border-color: #ddd;
}

.pagination .page-item.active .page-link {
    background-color: #007bff;
    border-color: #007bff;
}

.pagination .page-link:hover {
    background-color: #f8f9fa;
    color: #007bff;
}

/* Gayrimenkul Detay Sayfası Stilleri */
.property-header {
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

.property-gallery {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.property-gallery .carousel-item img {
    height: 500px;
    object-fit: cover;
}

.property-features-large .feature-item {
    background: white;
    transition: transform 0.3s ease;
}

.property-features-large .feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.property-description ul {
    padding-left: 20px;
}

.property-description ul li {
    margin-bottom: 10px;
}

.agent-image {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border: 5px solid white;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.agent-contact p {
    margin-bottom: 10px;
}

.agent-contact i {
    width: 25px;
}

/* Carousel Kontrolleri */
.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background: rgba(0,0,0,0.5);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    margin: 0 20px;
}

.carousel-indicators {
    margin-bottom: 0;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 5px;
} 