/* ===== ANKARA BOYA USTASI - ANA SAYFA STİLLERİ ===== */

@import url('https://fonts.googleapis.com/css2?family=Google+Sans:wght@400;500;600;700;800&display=swap');

:root {
    --primary: #F59340;
    --primary-dark: #d47820;
    --text: #1a1a2e;
    --text-light: #555;
    --bg: #f8f7f4;
    --white: #fff;
    --radius: 16px;
    --shadow: 0 4px 24px rgba(0, 0, 0, .06);
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Google Sans', 'Product Sans', system-ui, -apple-system, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    padding-bottom: 60px;
}

@media (min-width: 769px) {
    body {
        padding-bottom: 0;
    }
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color .2s;
}

a:hover {
    color: var(--primary-dark);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 80px 0;
}

/* ===== HEADER ===== */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    padding: 8px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-logo {
    padding-top: 8px;
}

.header-logo img {
    height: 40px;
    width: auto;
}

.header-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary);
    color: #fff !important;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    white-space: nowrap;
}

.header-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(245, 147, 64, 0.3);
    color: #fff !important;
}

/* Arama butonu özel stilleri */
#header-call-btn {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    box-shadow: 0 2px 10px rgba(34, 197, 94, 0.3);
}

#header-call-btn:hover {
    background: linear-gradient(135deg, #16a34a, #15803d);
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.4);
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 640px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 80px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.85), rgba(45, 45, 94, 0.75));
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: relative;
    z-index: 1;
    color: #fff;
    max-width: 700px;
    padding-top: 20px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(245, 147, 64, 0.2);
    border: 1px solid rgba(245, 147, 64, 0.4);
    color: #FFE66D;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero h1 span {
    color: var(--primary);
}

.hero-sub {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 32px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* Hero butonlarını mobilde gizle */
@media (max-width: 768px) {
    .hero-actions {
        display: none;
    }
}

/* Hero butonlarını mobilde gizle */
@media (max-width: 768px) {
    .hero-actions {
        display: none;
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.2s;
    cursor: pointer;
    border: none;
    text-decoration: none;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(245, 147, 64, 0.3);
}

.btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.25);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 48px;
    flex-wrap: wrap;
}

.hero-stat {
    text-align: center;
    min-width: 100px;
}

.hero-stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
}

.hero-stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 4px;
}

/* ===== TRUST BAR ===== */
.trust-bar {
    background: var(--white);
    padding: 20px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.trust-bar-inner {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text);
}

.trust-item svg {
    stroke: var(--primary);
    fill: var(--primary);
}

/* ===== CALCULATOR ===== */
.calculator-section {
    background: var(--white);
}

.section-title {
    text-align: center;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--text);
    margin-bottom: 12px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 40px;
}

.calculator-card {
    max-width: 600px;
    margin: 0 auto;
    background: var(--bg);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow);
}

.calc-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.calc-subtitle {
    color: var(--text-light);
    margin-bottom: 32px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text);
}

.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    background: var(--white);
    cursor: pointer;
    transition: border-color 0.2s;
}

.form-group select:focus {
    outline: none;
    border-color: var(--primary);
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 32px;
}

.checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.checkbox-group label {
    font-weight: 500;
    cursor: pointer;
}

.calc-result {
    background: linear-gradient(135deg, #1a1a2e, #2d2d5e);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    color: #fff;
}

.calc-result-label {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 8px;
}

.calc-result-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 8px;
}

.calc-result-note {
    font-size: 0.85rem;
    opacity: 0.7;
}

/* ===== COLOR FINDER ===== */
.color-finder-section {
    background: var(--bg);
}

.color-finder-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.cf-preview {
    position: sticky;
    top: 100px;
}

.cf-preview-wall {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    aspect-ratio: 4/3;
}

.cf-wall-color {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #E8D5C4;
    transition: background 0.3s;
}

.cf-wall-fg {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.cf-preview-info {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 20px;
    padding: 16px;
    background: var(--white);
    border-radius: 12px;
}

.cf-swatch {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    background: #E8D5C4;
    border: 3px solid rgba(0, 0, 0, 0.1);
    transition: background 0.3s;
}

.cf-color-details {
    flex: 1;
}

.cf-color-name {
    display: block;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text);
}

.cf-color-hex {
    display: block;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 2px;
}

.cf-palette {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: var(--shadow);
}

.cf-colors {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(60px, 1fr));
    gap: 12px;
    margin-bottom: 24px;
}

.cf-color-btn {
    width: 100%;
    aspect-ratio: 1;
    border: 3px solid transparent;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s;
}

.cf-color-btn:hover {
    transform: scale(1.1);
    border-color: var(--text);
}

.cf-color-btn.active {
    border-color: var(--text);
    transform: scale(1.05);
}

.cf-explore-btn {
    width: 100%;
    justify-content: center;
}

/* ===== SERVICES ===== */
.services-section {
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.service-card {
    background: var(--bg);
    border-radius: var(--radius);
    padding: 32px;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: var(--shadow);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text);
}

.service-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* ===== SEO CONTENT ===== */
.seo-section {
    background: var(--bg);
}

.seo-inner {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius);
    padding: 48px;
    box-shadow: var(--shadow);
}

.seo-inner h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 24px;
    color: var(--text);
}

.seo-inner h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 32px 0 16px;
    color: var(--text);
}

.seo-text p {
    margin-bottom: 16px;
    color: var(--text-light);
    line-height: 1.8;
}

.seo-text ul {
    margin: 20px 0;
    padding-left: 24px;
}

.seo-text li {
    margin-bottom: 10px;
    color: var(--text-light);
    line-height: 1.7;
}

.seo-text strong {
    color: var(--text);
    font-weight: 600;
}

/* ===== FAQ ===== */
.faq-section {
    background: var(--white);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg);
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    text-align: left;
    font-family: inherit;
    transition: background 0.2s;
}

.faq-question:hover {
    background: rgba(0, 0, 0, 0.02);
}

.faq-question svg {
    flex-shrink: 0;
    transition: transform 0.3s;
    stroke: var(--primary);
}

.faq-question[aria-expanded="true"] svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 24px 20px;
    color: var(--text-light);
    line-height: 1.7;
}

/* ===== FOOTER ===== */
.footer {
    background: #111827;
    color: rgba(255, 255, 255, 0.6);
    padding: 60px 0 0;
    font-size: 14px;
}

.footer h4 {
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 40px;
}

.footer-brand img {
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 13px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.5);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 13px;
}

.footer-contact svg {
    flex-shrink: 0;
    stroke: var(--primary);
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.6);
}

.footer-contact a:hover {
    color: var(--primary);
}

.district-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.district-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.7) !important;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    transition: background 0.2s, color 0.2s;
}

.district-tag:hover {
    background: var(--primary);
    color: #fff !important;
}

.footer-bottom {
    text-align: center;
    padding: 24px 0;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}

/* ===== MOBILE FIXED BAR ===== */
.mobile-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 200;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
}

.mobile-bar a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 14px;
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: background 0.2s;
}

.mobile-bar a:active {
    background: rgba(0, 0, 0, 0.1);
}

/* ===== ANIMATIONS ===== */
.fade-in {
    opacity: 0;
    animation: fadeIn 0.6s ease forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .section-padding {
        padding: 50px 0;
    }

    .hero {
        min-height: 500px;
        text-align: center;
        padding-top: 100px;
    }

    .hero-content {
        padding: 0 15px;
    }

    .hero h1 {
        font-size: 1.6rem;
    }

    .hero-sub {
        font-size: 0.95rem;
    }

    .hero-stats {
        gap: 20px;
        justify-content: center;
        flex-wrap: nowrap;
    }

    .hero-stat {
        min-width: 80px;
    }

    .hero-stat-number {
        font-size: 1.5rem;
    }

    .hero-stat-label {
        font-size: 0.7rem;
    }

    .trust-bar-inner {
        gap: 12px;
    }

    .trust-item {
        font-size: 0.7rem;
    }

    .trust-item svg {
        width: 14px;
        height: 14px;
    }

    .color-finder-inner {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .cf-preview {
        position: static;
    }

    .cf-colors {
        grid-template-columns: repeat(auto-fill, minmax(50px, 1fr));
        gap: 8px;
    }

    .calculator-card {
        padding: 24px 20px;
    }

    .calc-title {
        font-size: 1.2rem;
    }

    .seo-inner {
        padding: 32px 20px;
    }

    .seo-inner h2 {
        font-size: 1.5rem;
    }

    .seo-inner h3 {
        font-size: 1.2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .mobile-bar {
        display: block;
    }

    /* Header'da Rengini Bul butonunu gizle, sadece arama butonu göster */
    .header-cta#header-color-btn {
        display: none;
    }

    #header-call-btn {
        font-size: 0;
        padding: 10px;
        min-width: 44px;
        min-height: 44px;
        justify-content: center;
        display: inline-flex !important;
        align-items: center;
    }

    #header-call-btn svg {
        margin: 0 !important;
        width: 20px;
        height: 20px;
        display: block;
    }

    /* Services kartları mobilde tek sütun */
    .services-grid {
        grid-template-columns: 1fr;
    }

    /* FAQ mobilde daha kompakt */
    .faq-question {
        padding: 16px 20px;
        font-size: 0.9rem;
    }

    .faq-answer p {
        padding: 0 20px 16px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.4rem;
    }

    .hero-sub {
        font-size: 0.9rem;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 16px;
        justify-content: center;
    }

    .hero-stat {
        min-width: 70px;
    }

    .hero-stat-number {
        font-size: 1.3rem;
    }

    .calc-result-price {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
    }

    .cf-preview-info {
        flex-direction: column;
        text-align: center;
    }

    .cf-color-name {
        font-size: 1rem;
    }

    .district-cloud {
        gap: 6px;
    }

    .district-tag {
        font-size: 11px;
        padding: 3px 10px;
    }
}
