/* Style System - Yalova 226 Halı ve Koltuk Yıkama */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
    --primary: hsl(200, 100%, 45%);
    --primary-light: hsl(200, 100%, 93%);
    --secondary: hsl(175, 80%, 40%);
    --accent: hsl(45, 100%, 50%);
    --dark: hsl(220, 40%, 12%);
    --dark-card: hsl(220, 30%, 18%);
    --light: hsl(220, 30%, 97%);
    --text: hsl(220, 20%, 20%);
    --text-muted: hsl(220, 15%, 50%);
    --white: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.75);
    --glass-border: rgba(255, 255, 255, 0.4);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background-color: var(--light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.2;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Layout Utilities */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 100px 0;
}

@media (max-width: 768px) {
    .section-padding {
        padding: 60px 0;
    }
}

.text-center { text-align: center; }

/* Buttons & Links */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    gap: 8px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    box-shadow: 0 8px 20px rgba(0, 153, 230, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(0, 153, 230, 0.45);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary);
    border: 2px solid var(--primary-light);
}

.btn-secondary:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background-color: #25D366;
    color: var(--white);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(37, 211, 102, 0.45);
}

/* Navigation Header */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid var(--light);
    transition: var(--transition);
}

header.scrolled {
    padding: 10px 0;
    background: var(--white);
    box-shadow: var(--shadow-md);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-text {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo-sub {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
    display: block;
    margin-top: -4px;
}

.nav-links {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text);
}

.nav-links a:hover, .nav-links a.active {
    color: var(--primary);
}

/* Hamburger mobile menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--dark);
    border-radius: 3px;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    position: relative;
    padding: 160px 0 100px 0;
    background: radial-gradient(circle at 80% 20%, hsla(200, 100%, 93%, 0.8) 0%, transparent 60%),
                radial-gradient(circle at 10% 80%, hsla(175, 80%, 90%, 0.5) 0%, transparent 50%);
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--dark), hsl(200, 80%, 25%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-text p {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 35px;
}

.hero-cta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
}

.hero-img-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--white);
    transform: rotate(2deg);
}

.hero-image::after {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: var(--radius-lg);
    z-index: -1;
    transform: rotate(-3deg);
    opacity: 0.15;
}

/* Stats Section */
.stats {
    background-color: var(--white);
    padding: 50px 0;
    border-bottom: 1px solid var(--light);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Services section */
.section-title {
    margin-bottom: 50px;
}

.section-title span {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}

.section-title h2 {
    font-size: 2.25rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.service-card-img {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.service-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover .service-card-img img {
    transform: scale(1.1);
}

.service-card-content {
    padding: 30px;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.service-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--light);
    padding-top: 15px;
}

.service-price {
    font-weight: 700;
    color: var(--secondary);
}

.service-link {
    font-weight: 600;
    color: var(--primary);
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.service-link i {
    transition: var(--transition);
}

.service-link:hover i {
    transform: translateX(3px);
}

/* Areas Section */
.areas {
    background-color: var(--white);
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.area-card {
    background: var(--light);
    border-radius: var(--radius-md);
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid transparent;
}

.area-card:hover {
    transform: translateY(-5px);
    background: var(--white);
    border-color: var(--primary-light);
    box-shadow: var(--shadow-md);
}

.area-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    font-size: 1.5rem;
}

.area-card h3 {
    margin-bottom: 15px;
}

.area-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.area-link {
    font-weight: 600;
    color: var(--primary);
    font-size: 0.9rem;
}

/* Dynamic FAQ Section */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius-md);
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 24px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--primary);
    transition: var(--transition);
}

.faq-item.active .faq-question::after {
    content: '−';
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.faq-item.active .faq-answer {
    padding: 0 24px 24px 24px;
    max-height: 200px;
}

/* Call to Action Banner */
.cta-banner {
    background: linear-gradient(135deg, var(--dark), hsl(220, 45%, 8%));
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 153, 230, 0.15) 0%, transparent 60%);
    z-index: 0;
}

.cta-container {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.cta-text h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.cta-text p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
}

.cta-btns {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

/* Footer styling */
footer {
    background-color: var(--dark);
    color: rgba(255, 255, 255, 0.6);
    padding: 80px 0 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-brand h3 {
    color: var(--white);
    margin-bottom: 20px;
}

.footer-brand p {
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.footer-links h4 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-contact h4 {
    color: var(--white);
    margin-bottom: 20px;
}

.footer-contact p {
    font-size: 0.9rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.map-wrapper {
    height: 150px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    margin-top: 15px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
}

/* Floating WhatsApp / Contact Panels */
.floating-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.floating-btn:hover {
    transform: scale(1.1) rotate(5deg);
}

.btn-float-whatsapp {
    background-color: #25D366;
}

.btn-float-phone {
    background-color: var(--primary);
}

/* Service Detail Page CSS */
.page-header {
    background: linear-gradient(135deg, var(--primary-light), hsla(175, 80%, 95%, 0.8));
    padding: 80px 0;
    margin-bottom: 60px;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.breadcrumbs {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

.breadcrumbs a:hover {
    color: var(--primary);
}

.detail-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    margin-bottom: 80px;
}

.detail-main img {
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    margin-bottom: 30px;
    width: 100%;
}

.detail-main h2 {
    font-size: 1.8rem;
    margin: 30px 0 15px 0;
}

.detail-main p {
    font-size: 1.05rem;
    color: var(--text);
    margin-bottom: 25px;
}

.feature-list {
    list-style: none;
    margin: 30px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.feature-list li {
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.feature-list li::before {
    content: "✓";
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 50%;
    font-weight: 700;
    font-size: 0.8rem;
}

.detail-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-box {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 30px;
    border: 1px solid var(--light);
}

.sidebar-box h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--primary-light);
    padding-bottom: 10px;
}

.sidebar-box ul {
    list-style: none;
}

.sidebar-box li {
    margin-bottom: 15px;
}

.sidebar-box a {
    display: flex;
    justify-content: space-between;
    font-weight: 500;
    color: var(--text);
    font-size: 0.95rem;
}

.sidebar-box a:hover, .sidebar-box a.active {
    color: var(--primary);
    padding-left: 5px;
}

.cta-box {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    border: none;
}

.cta-box h3 {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.2);
}

.cta-box p {
    margin-bottom: 25px;
    font-size: 0.95rem;
}

/* Competitor Comparison SEO Page Style */
.comparison-table-wrapper {
    overflow-x: auto;
    margin: 40px 0;
    box-shadow: var(--shadow-md);
    border-radius: var(--radius-md);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--white);
}

.comparison-table th {
    background-color: var(--dark);
    color: var(--white);
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    padding: 18px 24px;
    text-align: left;
}

.comparison-table th:nth-child(2) {
    background-color: hsl(220, 20%, 30%);
}

.comparison-table th:nth-child(3) {
    background-color: var(--primary);
}

.comparison-table td {
    padding: 16px 24px;
    border-bottom: 1px solid var(--light);
    font-size: 0.95rem;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table td strong {
    color: var(--dark);
}

.comparison-badge {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.badge-warning {
    background-color: #FEF3C7;
    color: #D97706;
}

.badge-success {
    background-color: #D1FAE5;
    color: #059669;
}

/* Pricing Calculator */
.calc-wrapper {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 40px;
    margin-top: 40px;
    align-items: start;
}

.calc-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 40px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--primary-light);
}

.calc-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.calc-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--light);
    gap: 20px;
}

.calc-item label {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--dark);
    display: flex;
    flex-direction: column;
}

.calc-item label span {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 400;
    margin-top: 2px;
}

.calc-input-wrapper {
    display: flex;
    align-items: center;
    border: 2px solid var(--primary-light);
    border-radius: 50px;
    overflow: hidden;
    background: var(--light);
}

.calc-btn-minus, .calc-btn-plus {
    border: none;
    background: none;
    width: 35px;
    height: 35px;
    font-size: 1.2rem;
    cursor: pointer;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.calc-btn-minus:hover, .calc-btn-plus:hover {
    background: var(--primary-light);
}

.calc-input-wrapper input {
    width: 50px;
    border: none;
    background: none;
    text-align: center;
    font-weight: 700;
    font-size: 1rem;
    color: var(--dark);
    padding: 5px 0;
    outline: none;
}

.calc-summary {
    background: linear-gradient(135deg, var(--primary-light), hsla(175, 80%, 93%, 0.8));
    border-radius: var(--radius-md);
    padding: 30px;
    border: 1px solid var(--primary-light);
}

.calc-summary-title {
    font-size: 1.2rem;
    margin-bottom: 15px;
    text-align: center;
}

.calc-total {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--secondary);
    text-align: center;
    margin-bottom: 10px;
    font-family: 'Outfit', sans-serif;
}

.calc-min-warning {
    background-color: #FEF3C7;
    color: #D97706;
    font-size: 0.8rem;
    font-weight: 600;
    text-align: center;
    padding: 8px 12px;
    border-radius: 6px;
    margin-bottom: 20px;
    display: none;
}

.policy-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 35px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--light);
}

.policy-card h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
}

.policy-list {
    list-style: none;
    margin-top: 20px;
}

.policy-list li {
    font-size: 0.9rem;
    color: var(--text);
    margin-bottom: 15px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.policy-list li i {
    color: var(--primary);
    margin-top: 4px;
    font-size: 0.95rem;
}

/* Additional Responsive Layout Helpers */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    align-items: start;
}

.contact-action-btns {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.area-highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.area-services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 20px;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .calc-wrapper {
        grid-template-columns: 1fr;
    }
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    .hero-text h1 {
        font-size: 2.5rem;
    }
    .hero-cta {
        justify-content: center;
    }
    .hero-img-wrapper {
        max-width: 500px;
        margin: 0 auto;
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .cta-container {
        flex-direction: column;
        text-align: center;
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .detail-grid {
        grid-template-columns: 1fr;
    }
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    .area-services-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--white);
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        box-shadow: var(--shadow-lg);
        border-top: 1px solid var(--light);
        max-height: calc(100vh - 70px);
        overflow-y: auto;
        z-index: 1000;
    }
    .nav-links.open {
        display: flex;
    }
    .menu-toggle {
        display: flex;
    }
    .menu-toggle.open span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    .menu-toggle.open span:nth-child(2) {
        opacity: 0;
    }
    .menu-toggle.open span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
    .page-header {
        padding: 50px 0;
        margin-bottom: 40px;
    }
    .page-header h1 {
        font-size: 1.85rem;
    }
    .areas-grid {
        grid-template-columns: 1fr;
    }
    .area-services-grid {
        grid-template-columns: 1fr;
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    .feature-list {
        grid-template-columns: 1fr;
    }
    .comparison-table-wrapper {
        margin: 25px 0;
    }
    .comparison-table th, 
    .comparison-table td {
        padding: 12px 14px;
        font-size: 0.85rem;
    }
    .calc-card {
        padding: 25px 20px;
    }
    .policy-card {
        padding: 24px 20px;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 16px;
    }
    .hero {
        padding: 120px 0 50px 0;
    }
    .hero-text h1 {
        font-size: 2rem;
    }
    .hero-text p {
        font-size: 1rem;
    }
    .hero-cta {
        flex-direction: column;
        width: 100%;
    }
    .hero-cta .btn {
        width: 100%;
    }
    .section-title h2 {
        font-size: 1.75rem;
    }
    .calc-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    .calc-input-wrapper {
        align-self: flex-end;
    }
    .contact-action-btns {
        flex-direction: column;
    }
    .contact-action-btns .btn {
        width: 100%;
    }
    .floating-cta {
        bottom: 15px;
        right: 15px;
        gap: 10px;
    }
    .floating-btn {
        width: 52px;
        height: 52px;
        font-size: 1.4rem;
    }
}

@media (max-width: 400px) {
    .logo img {
        height: 40px !important;
    }
    .logo-text {
        font-size: 1.15rem !important;
    }
    .logo-sub {
        font-size: 0.7rem !important;
    }
    .hero-text h1 {
        font-size: 1.75rem;
    }
}

/* ==========================================================================
   Articles & Blog Styling System (Çiftlikköy & Competitor SEO)
   ========================================================================== */
.article-filter-nav {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
    border-bottom: 2px solid var(--light);
    padding-bottom: 15px;
}

.filter-tab {
    padding: 10px 20px;
    border-radius: 50px;
    background: var(--white);
    color: var(--text);
    border: 1px solid var(--primary-light);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.filter-tab:hover, .filter-tab.active {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    border-color: transparent;
    box-shadow: 0 4px 12px rgba(0, 153, 230, 0.25);
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 30px;
}

.article-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}

.article-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.article-card-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 10;
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.badge-ciftlikkoy {
    background: linear-gradient(135deg, #00b4db, #0083b0);
    color: #ffffff;
}

.badge-rakip {
    background: linear-gradient(135deg, #f857a6, #ff5858);
    color: #ffffff;
}

.article-card-img {
    height: 200px;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.article-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.article-card:hover .article-card-img img {
    transform: scale(1.05);
}

.article-card-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.article-card-meta {
    display: flex;
    gap: 15px;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.article-card-content h3 {
    font-size: 1.15rem;
    line-height: 1.4;
    margin-bottom: 12px;
    font-family: 'Outfit', sans-serif;
}

.article-card-content h3 a {
    color: var(--dark);
}

.article-card-content h3 a:hover {
    color: var(--primary);
}

.article-card-content p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

.article-card-footer {
    border-top: 1px solid var(--light);
    padding-top: 15px;
    display: flex;
    justify-content: flex-end;
}

.read-more-btn {
    color: var(--primary);
    font-weight: 700;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.read-more-btn:hover {
    gap: 10px;
    color: var(--secondary);
}

/* Article Detail Styles */
.article-detail-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
}

.article-body-style {
    font-size: 1.05rem;
    line-height: 1.8;
    color: hsl(220, 20%, 25%);
}

.article-body-style p {
    margin-bottom: 20px;
}

.article-lead {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--dark);
    line-height: 1.7;
    background: var(--white);
    padding: 24px;
    border-radius: var(--radius-md);
    border-left: 5px solid var(--primary);
    box-shadow: var(--shadow-sm);
    margin-bottom: 30px !important;
}

.article-body-style h2 {
    font-size: 1.6rem;
    margin: 40px 0 20px 0;
    color: var(--dark);
    font-family: 'Outfit', sans-serif;
    position: relative;
    padding-bottom: 10px;
}

.article-body-style h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--primary);
    border-radius: 3px;
}

.article-body-style h3 {
    font-size: 1.3rem;
    margin: 30px 0 15px 0;
    color: var(--dark);
}

.article-body-style ul, .article-body-style ol {
    margin-bottom: 25px;
    padding-left: 25px;
}

.article-body-style li {
    margin-bottom: 10px;
}

.table-of-contents {
    background: var(--white);
    border: 1px solid var(--primary-light);
    border-radius: var(--radius-md);
    padding: 24px;
    margin: 25px 0 35px 0;
    box-shadow: var(--shadow-sm);
}

.table-of-contents h4 {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.table-of-contents ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.table-of-contents li {
    margin-bottom: 8px;
}

.table-of-contents li a {
    color: var(--text);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
}

.table-of-contents li a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.article-callout {
    padding: 24px;
    border-radius: var(--radius-md);
    margin: 30px 0;
}

.article-callout.highlight {
    background-color: hsl(200, 100%, 96%);
    border: 1px solid var(--primary-light);
    border-left: 5px solid var(--primary);
}

.article-callout.success {
    background-color: hsl(150, 80%, 96%);
    border: 1px solid hsl(150, 80%, 80%);
    border-left: 5px solid hsl(150, 80%, 40%);
}

.article-callout h4 {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.article-author-box {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--white);
    padding: 25px;
    border-radius: var(--radius-md);
    border: 1px solid var(--primary-light);
    margin-top: 50px;
    box-shadow: var(--shadow-sm);
}

.author-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.article-cta-box {
    background: linear-gradient(135deg, #ffffff, #e6f7ff);
    border: 2px solid var(--primary-light);
    border-radius: var(--radius-md);
    padding: 30px;
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.comparison-mini-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: var(--white);
    border-radius: var(--radius-sm);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.comparison-mini-table th, .comparison-mini-table td {
    padding: 14px 18px;
    text-align: left;
    border-bottom: 1px solid var(--light);
    font-size: 0.9rem;
}

.comparison-mini-table th {
    background: var(--dark);
    color: var(--white);
    font-family: 'Outfit', sans-serif;
}

.sidebar-article-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-article-list li {
    margin-bottom: 12px;
    border-bottom: 1px dashed var(--light);
    padding-bottom: 10px;
}

.sidebar-article-list a {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.4;
    color: var(--text);
}

.sidebar-article-list a:hover {
    color: var(--primary);
}

@media (max-width: 768px) {
    .articles-grid {
        grid-template-columns: 1fr;
    }
    .article-cta-box {
        flex-direction: column;
        align-items: flex-start;
    }
}

