        :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);
        }
        
        /* 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 {
            color: var(--gold);
        }
        
       
        
        /* Search Bar - Yeni Tasarım */
        .search-container {
            max-width: 1200px;
            width: 100%;
            margin: 0 auto;
            padding: 20px;
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            position: relative;
            margin-top: -70px;
            z-index: 10;
        }
        
        .search-tabs {
            display: flex;
            border-bottom: 2px solid #eee;
            margin-bottom: 20px;
        }
        
        .search-tab {
            padding: 10px 25px;
            font-weight: bold;
            cursor: pointer;
            text-transform: uppercase;
            font-size: 0.9rem;
            color: var(--dark);
            border-bottom: 3px solid transparent;
            transition: all 0.3s;
        }
        
        .search-tab.active {
            color: var(--gold);
            border-bottom: 3px solid var(--gold);
        }
        
        .search-form {
            display: grid;
            grid-template-columns: repeat(4, 1fr) auto;
            gap: 15px;
            align-items: center;
        }
        
        .search-field {
            width: 100%;
        }
        
        .search-field label {
            display: block;
            margin-bottom: 5px;
            font-weight: bold;
            font-size: 0.85rem;
            color: var(--dark);
        }
        
        .search-field select,
        .search-field input {
            width: 100%;
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 0.9rem;
        }
        
        .search-button {
            background-color: var(--gold);
            color: var(--dark);
            font-weight: bold;
            border: none;
            padding: 12px 25px;
            border-radius: 4px;
            cursor: pointer;
            transition: all 0.3s;
            text-transform: uppercase;
            letter-spacing: 1px;
            height: 42px;
            margin-top: 20px;
        }
        
        .search-button:hover {
            background-color: #c9a227;
            transform: translateY(-2px);
        }
        
        .advanced-search {
            text-align: right;
            margin-top: 10px;
            font-size: 0.85rem;
        }
        
        .advanced-search a {
            color: #666;
            text-decoration: none;
        }
        
        .advanced-search a:hover {
            color: var(--gold);
        }
        
        /* Listings Section */
        .section-title {
            text-align: center;
            margin: 3rem 0 2rem;
            color: var(--dark);
            position: relative;
        }
        
        .section-title:after {
            content: "";
            display: block;
            width: 80px;
            height: 3px;
            background-color: var(--gold);
            margin: 10px auto 0;
        }
        
        .section-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto 2rem;
            padding: 0 1rem;
        }
        
        .section-header h2 {
            margin: 0;
        }
        
        .section-header .sorting {
            display: flex;
            align-items: center;
        }
        
        .section-header .sorting span {
            margin-right: 10px;
            font-size: 0.9rem;
        }
        
        .section-header .sorting select {
            padding: 5px 10px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 0.9rem;
        }
        
        .view-all-btn {
            display: inline-block;
            background-color: white;
            color: var(--dark);
            border: 2px solid var(--gold);
            padding: 0.5rem 1.5rem;
            border-radius: 4px;
            text-decoration: none;
            font-weight: bold;
            font-size: 0.9rem;
            transition: all 0.3s;
        }
        
        .view-all-btn:hover {
            background-color: var(--gold);
            color: white;
        }
        
        .listings-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
        }
        
        .listings-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            justify-content: center;
        }
        
        .listing-card {
            background-color: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s;
            width: calc(25% - 20px);
            flex-grow: 0;
            flex-shrink: 0;
            position: relative;
        }
        
        .listing-card:hover {
            transform: translateY(-5px);
        }
        
        .listing-number {
            position: absolute;
            top: 10px;
            right: 10px;
            background-color: var(--dark);
            color: white;
            width: 25px;
            height: 25px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.8rem;
            font-weight: bold;
            z-index: 2;
        }
        
        .listing-image {
            position: relative;
            height: 200px;
        }
        
        .listing-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .listing-badge {
            position: absolute;
            top: 10px;
            left: 10px;
            background-color: var(--gold);
            color: var(--dark);
            padding: 0.3rem 0.8rem;
            border-radius: 4px;
            font-weight: bold;
            font-size: 0.8rem;
        }
        
        .listing-content {
            padding: 1rem;
        }
        
        .listing-price {
            color: var(--gold);
            font-size: 1.3rem;
            font-weight: bold;
            margin-bottom: 0.5rem;
        }
        
        .listing-title {
            font-size: 1rem;
            margin-bottom: 0.5rem;
        }
        
        .listing-location {
            display: flex;
            align-items: center;
            color: #777;
            font-size: 0.9rem;
            margin-bottom: 1rem;
        }
        
        .listing-features {
            display: flex;
            justify-content: space-between;
            border-top: 1px solid #eee;
            padding-top: 1rem;
            font-size: 0.9rem;
        }
        
        .listing-feature {
            display: flex;
            align-items: center;
            gap: 5px;
        }
        
        .text-center {
            text-align: center;
            margin-top: 2rem;
        }
        
        /* News/Blog Section */
        .news-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
        }
        
        .news-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            justify-content: center;
        }
        
        .news-card {
            background-color: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
            width: calc(33.333% - 20px);
            flex-grow: 0;
            flex-shrink: 0;
            transition: transform 0.3s;
        }
        
        .news-card:hover {
            transform: translateY(-5px);
        }
        
        .news-image {
            height: 220px;
        }
        
        .news-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .news-content {
            padding: 1.5rem;
        }
        
        .news-date {
            color: #777;
            font-size: 0.8rem;
            margin-bottom:  0.8rem;
        }
        
        .news-title {
            font-size: 1.2rem;
            margin-bottom: 1rem;
            font-weight: bold;
            line-height: 1.4;
        }
        
        .news-excerpt {
            color: #555;
            font-size: 0.9rem;
            line-height: 1.5;
            margin-bottom: 1.5rem;
        }
        
        .news-link {
            display: inline-block;
            color: var(--gold);
            font-weight: bold;
            text-decoration: none;
            font-size: 0.9rem;
            transition: all 0.3s;
        }
        
        .news-link:hover {
            color: var(--dark);
        }
        
        /* Property Request Form */
        .request-form-section {
            background-color: #f3f3f3;
            padding: 4rem 0;
            margin-top: 4rem;
        }
        
        .request-form-container {
            max-width: 1000px;
            margin: 0 auto;
            padding: 0 1rem;
        }
        
        .request-form-wrapper {
            display: flex;
            background-color: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
        }
        
        .request-form-image {
            
            width: 40%;
              background-image: url('https://kayaemlakyatirimdanismanlik.com.tr/kaya/uploads/talep/talepformu.jpg');
    background-size: cover;
    background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            padding: 2rem;
            position: relative;
        }
        
        .request-form-image:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(37, 37, 37, 0.7);
        }
        
        .request-form-image-content {
            position: relative;
            z-index: 2;
            text-align: center;
        }
        
        .request-form-image h3 {
            font-size: 1.8rem;
            margin-bottom: 1rem;
        }
        
        .request-form-image p {
            font-size: 1rem;
            line-height: 1.6;
            margin-bottom: 2rem;
        }
        
        .request-form-content {
            width: 60%;
            padding: 2.5rem;
        }
        
        .request-form-content h3 {
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            color: var(--dark);
            position: relative;
            padding-bottom: 0.8rem;
        }
        
        .request-form-content h3:after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 60px;
            height: 3px;
            background-color: var(--gold);
        }
        
        .form-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }
        
        .form-group {
            margin-bottom: 1rem;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-size: 0.9rem;
            color: #555;
        }
        
        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 0.8rem;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 0.9rem;
        }
        
        .form-group.full {
            grid-column: span 2;
        }
        
        .form-group textarea {
            height: 120px;
            resize: vertical;
        }
        
        .form-submit {
            background-color: var(--gold);
            color: var(--dark);
            border: none;
            padding: 1rem 2rem;
            font-weight: bold;
            border-radius: 4px;
            cursor: pointer;
            transition: all 0.3s;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-top: 1rem;
        }
        
        .form-submit:hover {
            background-color: #c9a227;
        }
        
        /* Agents Section */
        .agents-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
        }
        
        .agents-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            justify-content: center;
        }
        
        .agent-card {
            background-color: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
            width: calc(25% - 30px);
            flex-grow: 0;
            flex-shrink: 0;
            text-align: center;
            transition: transform 0.3s;
        }
        
        .agent-card:hover {
            transform: translateY(-5px);
        }
        
        .agent-image {
            height: 250px;
        }
        
        .agent-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .agent-content {
            padding: 1.5rem 1rem;
        }
        
        .agent-name {
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
        }
        
        .agent-title {
            color: #777;
            font-size: 0.9rem;
            margin-bottom: 1rem;
        }
        
        .agent-contact {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 1rem;
        }
        
        .agent-contact-btn {
                width: 90px;
    height: 40px;
    display: flex
;
    align-items: center;
    justify-content: center;
    background-color: var(--light);
    color: var(--dark);
    transition: all 0.3s;
        }
        
        .agent-contact-btn:hover {
            background-color: var(--gold);
            color: var(--light);
        }
        
        /* CTA Section */
        .cta {
            background-color: var(--dark);
            color: var(--light);
            padding: 4rem 1rem;
            text-align: center;
        }
        
        .cta-container {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .cta h2 {
            font-size: 2rem;
            margin-bottom: 1rem;
        }
        
        .cta p {
            font-size: 1.1rem;
            margin-bottom: 2rem;
        }
        
        .btn {
            display: inline-block;
            background-color: var(--gold);
            color: var(--dark);
            padding: 0.8rem 2rem;
            border-radius: 4px;
            text-decoration: none;
            font-weight: bold;
            transition: all 0.3s;
        }
        
        .btn:hover {
            background-color: #c9a227;
            transform: translateY(-3px);
        }
        
        /* 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;
        }
        
        /* Media Queries */
        @media (max-width: 1100px) {
            .listing-card {
                width: calc(33.333% - 20px);
            }
            
            .agent-card {
                width: calc(33.333% - 30px);
            }
            
            .news-card {
                width: calc(50% - 15px);
            }
        }
        
        @media (max-width: 900px) {
            .footer-container {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .search-form {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .search-button {
                grid-column: span 2;
                width: 100%;
            }
            
            .request-form-wrapper {
                flex-direction: column;
            }
            
            .request-form-image, 
            .request-form-content {
                width: 100%;
            }
            
            .request-form-image {
                min-height: 250px;
            }
        }
        
        @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;
            }
            
            .listing-card {
                width: calc(50% - 20px);
            }
            
            .agent-card {
                width: calc(50% - 30px);
            }
            
            .search-form {
                grid-template-columns: 1fr;
            }
            
            .search-button {
                grid-column: 1;
            }
            
            .form-grid {
                grid-template-columns: 1fr;
            }
            
            .form-group.full {
                grid-column: 1;
            }
        }
        
        @media (max-width: 480px) {
            .listing-card {
                width: 100%;
            }
            
            .agent-card {
                width: 100%;
            }
            
            .news-card {
                width: 100%;
            }
            
            .footer-container {
                grid-template-columns: 1fr;
            }
            
            .hero h1 {
                font-size: 2rem;
            }
            
            .hero p {
                font-size: 1rem;
            }
            
            .search-tabs {
                flex-wrap: wrap;
            }
            
            .search-tab {
                padding: 8px 15px;
                font-size: 0.8rem;
            }
        }
