/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #f8f5f0;
    color: #2c2c2c;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== HEADER / NAVBAR ===== */
header {
    background: #2c1810;
    color: #f5ede4;
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 20px rgba(0,0,0,0.4);
    border-bottom: 3px solid #c89d6e;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #f5ede4;
}
.logo span {
    color: #c89d6e;
}
.logo small {
    display: block;
    font-size: 0.7rem;
    font-weight: 300;
    letter-spacing: 2px;
    color: #b8a08e;
    font-family: 'Inter', sans-serif;
}

.nav-menu {
    display: flex;
    gap: 28px;
    list-style: none;
    font-weight: 500;
    font-size: 0.95rem;
}
.nav-menu a {
    color: #e8ddd0;
    transition: 0.25s ease;
    padding: 6px 0;
    border-bottom: 2px solid transparent;
}
.nav-menu a:hover,
.nav-menu a.active {
    color: #c89d6e;
    border-bottom-color: #c89d6e;
}

.nav-cta {
    background: #c89d6e;
    color: #2c1810 !important;
    padding: 8px 20px !important;
    border-radius: 30px;
    font-weight: 600;
    border-bottom: none !important;
}
.nav-cta:hover {
    background: #dbb07e;
    color: #1f110a !important;
}

.menu-toggle {
    display: none;
    font-size: 1.8rem;
    color: #f5ede4;
    cursor: pointer;
    background: none;
    border: none;
}

/* ===== HERO ===== */
.hero {
    background: linear-gradient(135deg, #2c1810 0%, #4a2c1a 100%);
    color: #f5ede4;
    padding: 80px 0 70px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.hero::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(200,157,110,0.08) 0%, transparent 70%);
    pointer-events: none;
}
.hero-content {
    position: relative;
    z-index: 2;
}
.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.8rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
}
.hero h1 span {
    color: #c89d6e;
}
.hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
    color: #d4c5b8;
    font-weight: 300;
}
.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: 0.3s ease;
    border: none;
    cursor: pointer;
}
.btn-primary {
    background: #c89d6e;
    color: #2c1810;
}
.btn-primary:hover {
    background: #dbb07e;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(200,157,110,0.3);
}
.btn-outline {
    background: transparent;
    color: #f5ede4;
    border: 2px solid #c89d6e;
}
.btn-outline:hover {
    background: #c89d6e;
    color: #2c1810;
    transform: translateY(-3px);
}
.btn-whatsapp {
    background: #25D366;
    color: #fff;
}
.btn-whatsapp:hover {
    background: #1da851;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37,211,102,0.3);
}

/* ===== SECTION TITLES ===== */
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 12px;
    color: #2c1810;
}
.section-subtitle {
    text-align: center;
    color: #7a6a5e;
    font-size: 1.05rem;
    margin-bottom: 40px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== SERVICES GRID ===== */
.services {
    padding: 70px 0 60px;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}
.service-card {
    background: #ffffff;
    padding: 32px 24px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(44,24,16,0.06);
    transition: 0.35s ease;
    border-left: 5px solid #c89d6e;
    text-align: center;
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(44,24,16,0.10);
}
.service-card .icon {
    font-size: 2.8rem;
    margin-bottom: 12px;
    display: block;
}
.service-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #2c1810;
}
.service-card p {
    color: #5f4e40;
    font-size: 0.95rem;
}
.service-card .link {
    display: inline-block;
    margin-top: 14px;
    color: #c89d6e;
    font-weight: 600;
    font-size: 0.9rem;
}
.service-card .link:hover {
    color: #a87d50;
}

/* ===== INFO PAGES ===== */
.info-section {
    background: #f0ebe4;
    padding: 70px 0 60px;
}
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.info-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    transition: 0.3s ease;
}
.info-card:hover {
    box-shadow: 0 12px 36px rgba(44,24,16,0.08);
}
.info-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: #2c1810;
    margin-bottom: 8px;
}
.info-card p {
    color: #5f4e40;
}
.info-card .link {
    color: #c89d6e;
    font-weight: 600;
    display: inline-block;
    margin-top: 12px;
}

/* ===== WHY US ===== */
.why-us {
    padding: 70px 0 60px;
    background: #ffffff;
}
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}
.why-item i {
    font-size: 2.6rem;
    color: #c89d6e;
    margin-bottom: 12px;
}
.why-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c1810;
}
.why-item p {
    color: #5f4e40;
    font-size: 0.9rem;
}

/* ===== CONTACT / CTA ===== */
.cta-section {
    background: #2c1810;
    color: #f5ede4;
    padding: 60px 0;
    text-align: center;
}
.cta-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    margin-bottom: 10px;
}
.cta-section p {
    color: #b8a08e;
    margin-bottom: 24px;
    font-size: 1.05rem;
}
.cta-section .btn {
    font-size: 1.1rem;
    padding: 16px 44px;
}

/* ===== FOOTER ===== */
footer {
    background: #1f110a;
    color: #b8a08e;
    padding: 40px 0 24px;
    text-align: center;
}
footer .footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: #f5ede4;
}
footer .footer-logo span {
    color: #c89d6e;
}
footer .contact-info {
    margin: 16px 0;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}
footer .contact-info i {
    color: #c89d6e;
    margin-right: 6px;
}
footer .copy {
    font-size: 0.85rem;
    border-top: 1px solid #3d2a1e;
    padding-top: 20px;
    margin-top: 16px;
}

/* ===== FIXED FLOATING BUTTONS ===== */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}
.floating-buttons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    color: #fff;
    font-size: 1.8rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    transition: 0.3s ease;
    text-decoration: none;
}
.floating-buttons a:hover {
    transform: scale(1.1);
}
.floating-buttons .whatsapp {
    background: #25D366;
}
.floating-buttons .phone {
    background: #c89d6e;
}

/* ===== PAGE CONTENT DETAIL (alt sayfalar) ===== */
.page-content {
    padding: 60px 0;
}
.page-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.6rem;
    color: #2c1810;
    margin-bottom: 16px;
}
.page-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #2c1810;
    margin: 30px 0 10px;
}
.page-content p {
    margin-bottom: 16px;
    color: #3d2a1e;
    font-size: 1.05rem;
}
.page-content ul {
    margin-left: 24px;
    margin-bottom: 16px;
}
.page-content li {
    margin-bottom: 6px;
    color: #3d2a1e;
}
.page-content .highlight {
    background: #f0ebe4;
    padding: 20px 30px;
    border-left: 5px solid #c89d6e;
    border-radius: 12px;
    margin: 20px 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    .nav-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        padding: 20px 0 10px;
        gap: 14px;
        background: #2c1810;
    }
    .nav-menu.open {
        display: flex;
    }
    .nav-menu a {
        font-size: 1rem;
        padding: 8px 0;
        border-bottom: 1px solid #3d2a1e;
    }
    .nav-cta {
        display: inline-block;
        width: fit-content;
    }

    .hero h1 {
        font-size: 2.4rem;
    }
    .hero p {
        font-size: 1rem;
    }
    .section-title {
        font-size: 1.9rem;
    }
    .services-grid {
        grid-template-columns: 1fr 1fr;
    }
    .floating-buttons {
        right: 15px;
        bottom: 20px;
    }
    .floating-buttons a {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    .info-grid {
        grid-template-columns: 1fr;
    }
    .why-grid {
        grid-template-columns: 1fr 1fr;
    }
    .hero h1 {
        font-size: 2rem;
    }
    .hero {
        padding: 50px 0 40px;
    }
    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
    .contact-info {
        flex-direction: column;
        gap: 10px;
    }
    .floating-buttons a {
        width: 44px;
        height: 44px;
        font-size: 1.2rem;
    }
}