:root {
    --primary-color: #d4a373; /* Altın/Bronz tonu */
    --accent-color: #e9c4c4; /* Soft Pembe - Görseldeki duvar rengi */
    --dark-color: #1a1a1a;
    --light-bg: #fdfaf9;
    --text-color: #333;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-bg);
    overflow-x: hidden;
}

/* Header & Nav */
header {
    background: rgba(255, 255, 255, 0.95);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    max-width: 1400px;
    margin: auto;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: 2px;
}

.logo span {
    display: block;
    font-size: 0.7rem;
    color: var(--primary-color);
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    padding: 0 20px;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark-color);
    font-weight: 500;
    transition: 0.3s;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), 
                url('https://images.unsplash.com/photo-1560750588-73207b1ef5b8?auto=format&fit=crop&q=80&w=2070') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    margin-bottom: 20px;
}

.btn-primary {
    display: inline-block;
    padding: 15px 40px;
    background: var(--accent-color);
    color: var(--dark-color);
    text-decoration: none;
    border-radius: 50px;
    margin-top: 30px;
    transition: 0.4s;
    font-weight: bold;
    border: 2px solid transparent;
}

.btn-primary:hover {
    background: transparent;
    border-color: var(--accent-color);
    color: white;
}

/* Info Bar */
.info-bar {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    background: var(--dark-color);
    color: white;
    padding: 30px 5%;
    text-align: center;
}

.info-item i {
    color: var(--accent-color);
    margin-right: 10px;
}

/* Services */
.services {
    padding: 100px 5%;
    max-width: 1200px;
    margin: auto;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
}

.underline {
    width: 80px;
    height: 3px;
    background: var(--accent-color);
    margin: 10px auto;
}

.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    transition: 0.4s;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.service-card:hover {
    transform: translateY(-10px);
    border-bottom: 5px solid var(--accent-color);
}

.service-card i {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

/* About Section */
.about {
    display: flex;
    flex-wrap: wrap;
    background: white;
}

.about-image, .about-text {
    flex: 1;
    min-width: 350px;
    padding: 80px 5%;
}

.about-image {
    background: url('https://images.unsplash.com/photo-1522335789203-aabd1fc54bc9?auto=format&fit=crop&q=80&w=1774') center/cover;
    min-height: 400px;
}

.check-list {
    list-style: none;
    margin-top: 20px;
}

.check-list li {
    margin-bottom: 10px;
}

.check-list i {
    color: #4CAF50;
    margin-right: 10px;
}

/* Responsive Menu */
@media screen and (max-width: 768px) {
    .nav-links {
        display: none; /* Mobil menü js ile açılacak şekilde kurgulanabilir */
    }
    .hero h1 { font-size: 2.5rem; }
}

footer {
    padding: 50px;
    text-align: center;
    background: #f4f4f4;
}

.social-icons {
    margin-top: 20px;
}

.social-icons a {
    font-size: 1.5rem;
    margin: 0 15px;
    color: var(--dark-color);
}

/* Stats Section */
.stats {
    display: flex;
    justify-content: space-around;
    padding: 80px 5%;
    background: var(--accent-color);
    color: var(--dark-color);
}

.stat-item h2 { font-size: 3rem; font-family: 'Playfair Display', serif; }

/* Detailed Services */
.detailed-services { padding: 100px 5%; }
.detail-row {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 100px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}
.detail-row.reverse { flex-direction: row-reverse; }
.detail-img img { width: 100%; border-radius: 20px; box-shadow: 20px 20px 0px var(--accent-color); }
.detail-text span { color: var(--primary-color); font-weight: bold; letter-spacing: 2px; }
.detail-text h2 { font-family: 'Playfair Display', serif; font-size: 2.5rem; margin: 15px 0; }
.read-more { text-decoration: none; color: var(--dark-color); font-weight: 600; border-bottom: 2px solid var(--accent-color); margin-top: 20px; display: inline-block; }

/* Pricing Table */
.pricing { background: #fff; padding: 100px 5%; }
.price-table { max-width: 800px; margin: auto; background: var(--light-bg); padding: 40px; border-radius: 20px; }
.price-item { display: flex; align-items: baseline; margin-bottom: 25px; font-size: 1.1rem; }
.dots { flex: 1; border-bottom: 1px dotted #ccc; margin: 0 15px; }

/* FAQ Section */
.faq { padding: 100px 5%; max-width: 900px; margin: auto; }
.faq-item { background: white; margin-bottom: 15px; border-radius: 10px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
.faq-question { padding: 20px; cursor: pointer; display: flex; justify-content: space-between; font-weight: 600; }
.faq-answer { padding: 0 20px; max-height: 0; overflow: hidden; transition: 0.3s ease-out; background: #fdfaf9; }
.faq-answer.active { padding: 20px; max-height: 200px; }

.reviews-section {
    padding: 100px 5%;
    background-color: #fdfaf9;
}

.google-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
    font-size: 0.9rem;
}

.reviews-slider {
    display: flex;
    overflow-x: auto; /* Mobilde kaydırılabilir */
    gap: 30px;
    padding: 40px 10px;
    scrollbar-width: none; /* Scroll bar gizleme */
}

.reviews-slider::-webkit-scrollbar {
    display: none;
}

.review-card {
    min-width: 350px;
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    border: 1px solid rgba(233, 196, 196, 0.3);
    transition: 0.3s;
}

.review-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(233, 196, 196, 0.4);
}

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    position: relative;
}

.user-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
}

.user-info h4 {
    font-size: 1rem;
    margin-bottom: 2px;
}

.review-date {
    font-size: 0.75rem;
    color: #888;
}

.g-icon {
    position: absolute;
    right: 0;
    top: 0;
    width: 18px;
}

.stars {
    color: #ffb400;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.review-card p {
    font-size: 0.95rem;
    font-style: italic;
    color: #555;
    line-height: 1.6;
}

.review-cta {
    text-align: center;
    margin-top: 40px;
}

.btn-outline {
    padding: 12px 30px;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s;
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
}