* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #f4f9fc;
    font-family: Arial, Helvetica, sans-serif;
    color: #14213d;
}

a {
    color: inherit;
}

.container {
    width: min(1200px, 92%);
    margin: 0 auto;
}

/* ÜST BİLGİ BAR */
.top-info-bar {
    display: flex;
    width: 100%;
    min-height: 48px;
    position: relative;
    z-index: 1002;
}

.top-info-left {
    position: relative;
    background: #0284c7;
    color: #ffffff;
    display: flex;
    align-items: center;
    padding-right: 20px;
}

.top-info-left::after {
    content: "";
    position: absolute;
    top: 0;
    right: -38px;
    width: 0;
    height: 0;
    border-top: 48px solid #0284c7;
    border-right: 38px solid transparent;
}

.top-info-left-inner {
    height: 48px;
    display: flex;
    align-items: center;
    gap: 14px;
    padding-left: 12px;
}

.top-phone-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 800;
}

.top-phone-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255,255,255,0.16);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.top-phone-text {
    white-space: nowrap;
}

.top-bar-divider {
    color: rgba(255,255,255,0.75);
    font-weight: 700;
}

.top-socials-left {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-right: 18px;
}

.top-socials-left a {
    color: #ffffff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    padding: 5px 8px;
    border-radius: 999px;
    background: rgba(255,255,255,0.12);
    transition: 0.2s ease;
}

.top-socials-left a:hover {
    background: rgba(255,255,255,0.24);
}

.top-info-right {
    flex: 1;
    background: #ffffff;
    color: #334155;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #e5eef5;
}

.top-info-right-inner {
    width: 100%;
    padding-left: 72px;
    padding-right: 30px;
    display: flex;
    align-items: center;
}

.top-info-items {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.top-info-item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    color: #334155;
    white-space: nowrap;
}

.top-info-item:not(:last-child)::after {
    content: "";
    width: 1px;
    height: 18px;
    background: #e2e8f0;
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
}

.top-info-item-primary {
    color: #0284c7;
}

.top-info-mini-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #e0f2fe;
    color: #0284c7;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

/* HEADER */
.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 10%;
    background: #ffffff;
    box-shadow: 0 2px 14px rgba(15, 23, 42, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #0ea5e9, #22c55e);
}

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo a {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    line-height: 0;
}

.logo img {
    display: block;
    width: auto;
    max-width: 260px;
    max-height: 58px;
    object-fit: contain;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    line-height: 0;
}

.footer-logo img {
    display: block;
    width: auto;
    max-width: 280px;
    max-height: 68px;
    object-fit: contain;
}

.navigation ul {
    display: flex;
    list-style: none;
    align-items: center;
}

.navigation ul li {
    margin-left: 18px;
    position: relative;
}

.navigation ul li a,
.dropdown-toggle {
    text-decoration: none;
    color: #0f172a;
    font-size: 16px;
    font-weight: 800;
    line-height: 1;
    transition: color 0.25s ease;
    background: none;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.dropdown-toggle {
    font-weight: 800;
    text-shadow: 0.25px 0 0 currentColor;
}

.navigation ul li a:hover,
.dropdown-toggle:hover {
    color: #0284c7;
}

.dropdown-arrow {
    font-size: 15px;
    transition: transform 0.25s ease;
}

.dropdown:hover .dropdown-arrow,
.dropdown.active-dropdown .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: 0.25s ease;
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.15);
    min-width: 260px;
    flex-direction: column;
    padding: 8px 0;
    border-radius: 0 0 14px 14px;
    border-top: 3px solid #0ea5e9;
    z-index: 1001;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0 !important;
    border-bottom: 1px solid #f1f5f9;
    width: 100%;
}

.dropdown-menu li:last-child {
    border-bottom: none;
}

.dropdown-menu li a {
    padding: 10px 16px !important;
    display: block;
    font-size: 14px;
    font-weight: 700 !important;
    width: 100%;
    color: #334155;
}

.dropdown-highlight {
    color: #0284c7 !important;
    font-weight: 900 !important;
}

.hamburger,
.mobile-only-nav,
.hero-btns-mobile,
.mobile-feature-combo {
    display: none;
}

/* HERO */
.hero {
    position: relative;
    min-height: 580px;
    height: 72vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-align: center;
    background-color: #0f172a;
    background-image: url("img/hero-temizlik-desktop.webp");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(14, 165, 233, 0.35), transparent 30%),
        radial-gradient(circle at 80% 30%, rgba(34, 197, 94, 0.18), transparent 25%);
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(2, 6, 23, 0.82), rgba(15, 23, 42, 0.56), rgba(14, 165, 233, 0.24));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    padding: 0 20px;
    max-width: 920px;
}

.hero-badge {
    display: inline-block;
    padding: 9px 16px;
    margin-bottom: 18px;
    border-radius: 999px;
    background: rgba(255,255,255,0.14);
    border: 1px solid rgba(255,255,255,0.22);
    backdrop-filter: blur(8px);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.6px;
    text-transform: uppercase;
}

.hero h1 {
    font-size: 54px;
    font-weight: 900;
    line-height: 1.08;
    margin-bottom: 20px;
}

.hero p {
    font-size: 20px;
    line-height: 1.65;
    margin: 0 auto 30px;
    max-width: 820px;
    color: rgba(255,255,255,0.93);
}

.hero-btns {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    padding: 0 28px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 17px;
    font-weight: 900;
    transition: 0.25s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
}

.cta-primary {
    background: #0ea5e9;
    color: #ffffff;
    box-shadow: 0 14px 32px rgba(14, 165, 233, 0.32);
}

.cta-secondary {
    background: #ffffff;
    color: #0369a1;
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.2);
}

/* AVANTAJ KUTULARI */
.advantages {
    position: relative;
    margin-top: -62px;
    z-index: 6;
    padding-bottom: 44px;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.advantage-card {
    background: #ffffff;
    border-radius: 22px;
    padding: 28px 22px;
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.11);
    text-align: center;
    border: 1px solid #e2e8f0;
    transition: 0.25s ease;
}

.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 55px rgba(15, 23, 42, 0.14);
}

.advantage-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    border-radius: 18px;
    background: linear-gradient(135deg, #e0f2fe, #dcfce7);
    color: #0284c7;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
}

.advantage-card h2 {
    font-size: 20px;
    line-height: 1.3;
    margin-bottom: 10px;
    color: #0f172a;
}

.advantage-card p {
    font-size: 15px;
    line-height: 1.65;
    color: #475569;
}

/* INTRO */
.desktop-intro {
    position: relative;
    z-index: 5;
    padding: 0 0 58px;
}

.desktop-intro-box {
    background: #ffffff;
    border-radius: 26px;
    padding: 38px 42px;
    box-shadow: 0 16px 44px rgba(15, 23, 42, 0.08);
    border: 1px solid #e2e8f0;
    max-width: 1080px;
    margin: 0 auto;
}

.desktop-intro-badge,
.section-badge,
.home-cta-badge,
.home-latest-posts-badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    color: #0369a1;
    background: #e0f2fe;
    border: 1px solid #bae6fd;
    padding: 8px 14px;
    border-radius: 999px;
    margin-bottom: 14px;
}

.desktop-intro-box h2,
.section-heading h2,
.seo-content-box h2 {
    font-size: 38px;
    line-height: 1.17;
    color: #0f172a;
    margin-bottom: 16px;
}

.desktop-intro-box p,
.section-heading p,
.seo-content-box p {
    font-size: 16px;
    line-height: 1.82;
    color: #475569;
    margin-bottom: 14px;
}

.desktop-intro-box p:last-child,
.seo-content-box p:last-child {
    margin-bottom: 0;
}

/* GENEL BAŞLIK */
.section-heading {
    max-width: 880px;
    margin: 0 auto 34px;
    text-align: center;
}

.left-heading {
    text-align: left;
    margin: 0 0 30px;
}

/* HİZMETLER */
.services-showcase {
    padding: 10px 0 68px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.service-card {
    background: #ffffff;
    border-radius: 26px;
    border: 1px solid #dbeafe;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.07);
    overflow: hidden;
    transition: 0.25s ease;
}

.service-card:hover,
.service-card.is-active {
    transform: translateY(-7px);
    border-color: #7dd3fc;
    box-shadow: 0 26px 55px rgba(15, 23, 42, 0.13);
}

.service-card-link {
    display: flex;
    min-height: 100%;
    flex-direction: column;
    color: inherit;
    text-decoration: none;
}

.service-icon {
    min-height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 62px;
    background:
        radial-gradient(circle at top right, rgba(14, 165, 233, 0.16), transparent 35%),
        linear-gradient(180deg, #f0f9ff 0%, #ffffff 100%);
}

.service-content {
    padding: 22px 22px 24px;
}

.service-chip {
    display: inline-flex;
    margin-bottom: 12px;
    padding: 7px 11px;
    border-radius: 999px;
    background: #ecfeff;
    color: #0e7490;
    font-size: 12px;
    font-weight: 900;
}

.service-content h3 {
    font-size: 24px;
    line-height: 1.2;
    margin-bottom: 10px;
    color: #0f172a;
}

.service-content p {
    font-size: 15px;
    line-height: 1.72;
    color: #475569;
    margin-bottom: 18px;
}

.service-inline-link {
    color: #0284c7;
    font-size: 14px;
    font-weight: 900;
}

/* SÜREÇ */
.process-section {
    padding: 68px 0;
    background:
        radial-gradient(circle at 12% 8%, rgba(14, 165, 233, 0.10), transparent 28%),
        linear-gradient(180deg, #ffffff 0%, #eff6ff 100%);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.process-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 26px 22px;
    border: 1px solid #dbeafe;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
}

.process-card span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 14px;
    margin-bottom: 18px;
    background: #0284c7;
    color: #ffffff;
    font-weight: 900;
}

.process-card h3 {
    font-size: 20px;
    color: #0f172a;
    margin-bottom: 10px;
}

.process-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #475569;
}

/* BÖLGELER */
.area-section {
    padding: 68px 0;
}

.area-box {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 34px;
    align-items: center;
    background: #ffffff;
    border-radius: 30px;
    padding: 42px;
    border: 1px solid #dbeafe;
    box-shadow: 0 18px 44px rgba(15, 23, 42, 0.08);
}

.area-content h2 {
    font-size: 36px;
    line-height: 1.17;
    margin-bottom: 16px;
    color: #0f172a;
}

.area-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 22px;
}

.area-call-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 20px;
    border-radius: 12px;
    background: #0ea5e9;
    color: #ffffff;
    font-weight: 900;
    text-decoration: none;
}

.area-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.area-grid span {
    background: #f0f9ff;
    color: #0369a1;
    border: 1px solid #bae6fd;
    border-radius: 14px;
    padding: 13px 10px;
    text-align: center;
    font-size: 14px;
    font-weight: 900;
}

/* CTA */
.home-cta-section {
    padding: 0 0 68px;
}

.home-cta-box {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    background:
        radial-gradient(circle at top right, rgba(255,255,255,0.23), transparent 32%),
        linear-gradient(135deg, #0369a1 0%, #0284c7 46%, #0f766e 100%);
    box-shadow: 0 24px 55px rgba(3, 105, 161, 0.24);
    padding: 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 34px;
}

.home-cta-content {
    max-width: 760px;
}

.home-cta-badge {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.22);
    color: #ffffff;
}

.home-cta-content h2 {
    font-size: 38px;
    line-height: 1.15;
    color: #ffffff;
    margin-bottom: 14px;
}

.home-cta-content p {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255,255,255,0.9);
}

.home-cta-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 285px;
}

.home-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 54px;
    padding: 0 18px;
    border-radius: 14px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 900;
    transition: 0.25s ease;
}

.home-cta-btn:hover {
    transform: translateY(-2px);
}

.home-cta-btn-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.home-cta-btn-call {
    background: #ffffff;
    color: #0369a1;
}

.home-cta-btn-whatsapp {
    background: #16a34a;
    color: #ffffff;
}

/* SEO İÇERİK */
.seo-content-section {
    padding: 0 0 68px;
}

.seo-content-box {
    background: #ffffff;
    border-radius: 28px;
    padding: 42px;
    border: 1px solid #dbeafe;
    box-shadow: 0 18px 44px rgba(15, 23, 42, 0.06);
}

/* FAQ */
.faq-section {
    padding: 68px 0;
    background: #ffffff;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    gap: 12px;
}

.faq-item {
    border: 1px solid #dbeafe;
    border-radius: 18px;
    background: #f8fcff;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    border: 0;
    background: transparent;
    cursor: pointer;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    font-size: 16px;
    font-weight: 900;
    color: #0f172a;
}

.faq-question span {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #e0f2fe;
    color: #0284c7;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.faq-answer {
    display: none;
    padding: 0 20px 18px;
}

.faq-answer p {
    font-size: 15px;
    line-height: 1.7;
    color: #475569;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-question span {
    background: #0284c7;
    color: #ffffff;
}

/* BLOG */
.home-latest-posts-section {
    padding: 68px 0;
    background: #f4f9fc;
}

.home-latest-posts-heading {
    max-width: 840px;
    margin: 0 auto 30px;
    text-align: center;
}

.home-latest-posts-heading h2 {
    font-size: 36px;
    color: #0f172a;
    margin-bottom: 12px;
}

.home-latest-posts-heading p {
    font-size: 16px;
    line-height: 1.75;
    color: #475569;
}

.home-latest-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.latest-post-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 24px;
    border: 1px solid #dbeafe;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
}

.latest-post-card span {
    display: inline-block;
    margin-bottom: 12px;
    color: #0284c7;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.latest-post-card h3 {
    font-size: 21px;
    line-height: 1.3;
    color: #0f172a;
    margin-bottom: 10px;
}

.latest-post-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #475569;
}

.home-latest-posts-footer {
    margin-top: 26px;
    text-align: center;
}

.home-latest-posts-all-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 22px;
    border-radius: 999px;
    background: #002231;
    color: #ffffff;
    text-decoration: none;
    font-weight: 900;
}

/* FOOTER */
.site-footer {
    background: #1a294b;
    color: #ffffff;
    padding: 58px 0 22px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
    gap: 34px;
}

.footer-about-text {
    margin-top: 18px;
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255,255,255,0.76);
}

.footer-col h3 {
    font-size: 18px;
    margin-bottom: 16px;
    color: #ffffff;
}

.footer-links {
    list-style: none;
    display: grid;
    gap: 10px;
}

.footer-links a {
    color: rgba(255,255,255,0.74);
    text-decoration: none;
    font-size: 15px;
}

.footer-links a:hover {
    color: #7dd3fc;
}

.footer-contact-list {
    display: grid;
    gap: 12px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.78);
    text-decoration: none;
    font-size: 15px;
}

.footer-contact-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.12);
    margin-top: 38px;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255,255,255,0.62);
    font-size: 14px;
}

/* SABİT BUTONLAR */
.floating-call,
.floating-whatsapp {
    position: fixed;
    right: 18px;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    z-index: 998;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 22px;
    box-shadow: 0 12px 26px rgba(15, 23, 42, 0.22);
}

.floating-call {
    bottom: 88px;
    background: #0ea5e9;
    color: #ffffff;
}

.floating-whatsapp {
    bottom: 24px;
    background: #16a34a;
    color: #ffffff;
}

/* TABLET */
@media (max-width: 1200px) {
    .main-header {
        padding: 10px 5%;
    }

    .logo img {
        max-width: 240px;
        max-height: 54px;
    }

    .top-info-right-inner {
        padding-left: 60px;
        padding-right: 18px;
    }

    .top-info-items {
        gap: 22px;
    }

    .top-info-item:not(:last-child)::after {
        right: -11px;
    }
}

@media (max-width: 992px) {
    .top-info-item {
        font-size: 13px;
    }

    .hero h1 {
        font-size: 42px;
    }

    .advantages-grid,
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-grid,
    .home-latest-posts-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .area-box {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .home-cta-box {
        flex-direction: column;
        align-items: flex-start;
    }

    .home-cta-actions {
        width: 100%;
        min-width: 100%;
        flex-direction: row;
    }

    .home-cta-btn {
        flex: 1;
    }
}

/* MOBİL */
@media (max-width: 768px) {
    .top-info-bar {
        display: none;
    }

    .main-header {
        padding: 9px 16px;
        min-height: 64px;
    }

    .main-header::before {
        display: none;
    }

    .logo img {
        max-width: 210px;
        max-height: 46px;
    }

    .hamburger {
        display: block;
        font-size: 28px;
        background: none;
        border: none;
        cursor: pointer;
        color: #0f172a;
        line-height: 1;
    }

    .navigation {
        display: none;
        width: 100%;
        background: #ffffff;
        position: absolute;
        top: 100%;
        left: 0;
        box-shadow: 0 10px 24px rgba(15, 23, 42, 0.12);
        border-top: 1px solid #e2e8f0;
    }

    .navigation.active {
        display: block;
    }

    .navigation ul {
        flex-direction: column;
        padding: 0;
        text-align: center;
    }

    .navigation ul li {
        margin: 0;
        border-bottom: 1px solid #eef2f7;
        width: 100%;
    }

    .navigation ul li a,
    .dropdown-toggle {
        justify-content: center;
        width: 100%;
        padding: 11px 16px;
        font-size: 14px;
    }

    .dropdown-menu {
        position: relative;
        display: block;
        width: 100%;
        background: #f8fafc;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
        transform: none;
        transition: 0.3s ease;
        min-width: 100%;
        box-shadow: none;
        border-top: none;
        border-radius: 0;
        padding: 0;
    }

    .dropdown:hover .dropdown-menu {
        opacity: 0;
        visibility: hidden;
        max-height: 0;
    }

    .dropdown.active-dropdown .dropdown-menu {
        max-height: 620px;
        opacity: 1;
        visibility: visible;
        border-top: 1px solid #e2e8f0;
    }

    .dropdown-menu li a {
        padding: 10px 16px !important;
        font-size: 13px;
        color: #475569;
    }

    .mobile-only-nav {
        display: flex;
        flex-direction: column;
        gap: 8px;
        padding: 12px 16px;
    }

    .btn-contact {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        color: #ffffff !important;
        padding: 11px 14px;
        border-radius: 10px;
        font-weight: 900;
        font-size: 14px;
        text-decoration: none;
    }

    .btn-call {
        background: #0ea5e9;
    }

    .btn-whatsapp {
        background: #16a34a;
    }

    .hero {
        height: auto;
        min-height: 430px;
        padding: 76px 0 54px;
        background-image: url("img/hero-temizlik-mobile.webp");
    }

    .hero h1 {
        font-size: 31px;
    }

    .hero p {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 22px;
    }

    .desktop-hero-btns {
        display: none;
    }

    .hero-btns-mobile {
        display: flex;
        flex-direction: column;
        gap: 10px;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }

    .cta-button {
        min-height: 50px;
        font-size: 15px;
    }

    .advantages,
    .desktop-intro {
        display: none;
    }

    .mobile-feature-combo {
        display: block;
        background: #f4f9fc;
        margin-top: -16px;
        padding: 0 0 34px;
        position: relative;
        z-index: 5;
    }

    .mobile-feature-main {
        background: #ffffff;
        border-radius: 20px;
        padding: 20px 16px;
        box-shadow: 0 12px 28px rgba(15, 23, 42, 0.09);
        text-align: center;
        transform: translateY(-18px);
    }

    .mobile-feature-badge {
        display: inline-block;
        font-size: 11px;
        font-weight: 900;
        letter-spacing: 0.3px;
        text-transform: uppercase;
        color: #0369a1;
        background: #e0f2fe;
        padding: 6px 10px;
        border-radius: 999px;
        margin-bottom: 10px;
    }

    .mobile-feature-main h2 {
        font-size: 25px;
        line-height: 1.2;
        color: #0f172a;
        margin-bottom: 10px;
    }

    .mobile-feature-main p {
        font-size: 14px;
        line-height: 1.6;
        color: #475569;
    }

    .mobile-feature-subgrid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .mobile-feature-card {
        background: #ffffff;
        border-radius: 18px;
        padding: 16px 14px;
        box-shadow: 0 10px 24px rgba(15, 23, 42, 0.07);
    }

    .mobile-feature-card-icon {
        width: 42px;
        height: 42px;
        border-radius: 13px;
        background: #e0f2fe;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 21px;
        margin-bottom: 10px;
    }

    .mobile-feature-card h3 {
        font-size: 16px;
        color: #0f172a;
        margin-bottom: 6px;
    }

    .mobile-feature-card p {
        font-size: 13px;
        line-height: 1.5;
        color: #475569;
    }

    .services-showcase,
    .process-section,
    .area-section,
    .faq-section,
    .home-latest-posts-section {
        padding: 44px 0;
    }

    .section-heading {
        margin-bottom: 24px;
    }

    .section-heading h2,
    .seo-content-box h2,
    .area-content h2,
    .home-cta-content h2,
    .home-latest-posts-heading h2 {
        font-size: 27px;
    }

    .section-heading p,
    .seo-content-box p,
    .area-content p,
    .home-cta-content p {
        font-size: 14px;
        line-height: 1.65;
    }

    .services-grid,
    .process-grid,
    .home-latest-posts-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .service-card,
    .process-card,
    .latest-post-card {
        border-radius: 20px;
    }

    .service-icon {
        min-height: 116px;
        font-size: 50px;
    }

    .service-content {
        padding: 18px 16px;
    }

    .service-content h3 {
        font-size: 21px;
    }

    .area-box,
    .seo-content-box,
    .home-cta-box {
        border-radius: 22px;
        padding: 24px 18px;
    }

    .area-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .home-cta-actions {
        flex-direction: column;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer-logo {
        justify-content: center;
        width: 100%;
    }

    .footer-logo img {
        max-width: 230px;
        max-height: 60px;
    }

    .footer-col-about {
        text-align: center;
    }

    .site-footer {
        padding: 44px 0 20px;
    }

    .floating-call,
    .floating-whatsapp {
        right: 14px;
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .floating-call {
        bottom: 82px;
    }

    .floating-whatsapp {
        bottom: 22px;
    }
}

@media (max-width: 420px) {
    .hero h1 {
        font-size: 28px;
    }

    .logo img {
        max-width: 185px;
        max-height: 42px;
    }

    .mobile-feature-subgrid,
    .area-grid {
        grid-template-columns: 1fr;
    }
}