* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #f5f7ef;
    font-family: Arial, Helvetica, sans-serif;
    color: #142015;
}

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: #11351f;
    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 #11351f;
    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: 900;
}

.top-phone-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255,255,255,0.14);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.top-phone-icon svg,
.top-info-mini-icon svg,
.top-socials-left svg {
    display: block;
    fill: currentColor;
}

.top-phone-text {
    white-space: nowrap;
}

.top-bar-divider {
    color: rgba(255,255,255,0.7);
    font-weight: 700;
}

.top-socials-left {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-right: 18px;
}

.top-socials-left a {
    color: #ffffff;
    text-decoration: none;
    width: 28px;
    height: 28px;
    border-radius: 999px;
    background: rgba(255,255,255,0.12);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s ease;
    font-size: 10px;
    font-weight: 900;
}

.top-socials-left a:hover {
    background: rgba(255,255,255,0.24);
    transform: translateY(-1px);
}

.top-info-right {
    flex: 1;
    background: #ffffff;
    color: #31402f;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #e2e8d8;
}

.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: 800;
    color: #31402f;
    white-space: nowrap;
}

.top-info-item:not(:last-child)::after {
    content: "";
    width: 1px;
    height: 18px;
    background: #dce5d3;
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
}

.top-info-item-primary {
    color: #1f6b37;
}

.top-info-mini-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #e7f6df;
    color: #1f6b37;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
}

/* HEADER */
.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 10%;
    background: #ffffff;
    box-shadow: 0 2px 18px rgba(18, 32, 21, 0.10);
    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, #11351f, #d4a017, #23834b);
}

.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: 62px;
    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: #172015;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    font-weight: 900 !important;
    line-height: 1;
    transition: color 0.25s ease;
    background: none;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-shadow: 0.25px 0 0 currentColor;
}

.navigation ul li a:hover,
.dropdown-toggle:hover {
    color: #1f6b37;
}

.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(18, 32, 21, 0.16);
    min-width: 275px;
    flex-direction: column;
    padding: 8px 0;
    border-radius: 0 0 14px 14px;
    border-top: 3px solid #d4a017;
    z-index: 1001;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0 !important;
    border-bottom: 1px solid #edf2e6;
    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: 800 !important;
    width: 100%;
    color: #34412f;
}

.hamburger,
.mobile-only-nav,
.hero-btns-mobile,
.mobile-feature-combo {
    display: none;
}

/* HERO */
.hero {
    position: relative;
    min-height: 620px;
    height: 76vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-align: center;
    background-color: #08140d;
    background-image:
        linear-gradient(90deg, rgba(8,20,13,0.88), rgba(17,53,31,0.70), rgba(212,160,23,0.18)),
        url("img/hero-ilaclama-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 18% 22%, rgba(245,197,66,0.22), transparent 26%),
        radial-gradient(circle at 80% 24%, rgba(35,131,75,0.32), transparent 28%);
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(6,14,9,0.86), rgba(17,53,31,0.62), rgba(8,20,13,0.46));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    padding: 0 20px;
    max-width: 960px;
}

.hero h1 {
    font-size: 56px;
    font-weight: 900;
    line-height: 1.06;
    margin-bottom: 20px;
    letter-spacing: -1.4px;
}

.hero p {
    font-size: 20px;
    line-height: 1.65;
    margin: 0 auto 22px;
    max-width: 840px;
    color: rgba(255,255,255,0.92);
}

.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: #680000;
    color: #ffffff;
    box-shadow: 0 14px 32px rgba(212, 160, 23, 0.28);
}

.cta-secondary {
    background: #005733;
    color: #e5fcee;
    box-shadow: 0 14px 32px rgba(0,0,0,0.22);
}

/* AVANTAJLAR */
.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(18, 32, 21, 0.11);
    text-align: center;
    border: 1px solid #e1ead8;
    transition: 0.25s ease;
}

.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 55px rgba(18, 32, 21, 0.14);
}

.advantage-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    border-radius: 18px;
    background: linear-gradient(135deg, #eaf6dd, #fff3bf);
    color: #1f6b37;
    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: #101c12;
}

.advantage-card p {
    font-size: 15px;
    line-height: 1.65;
    color: #53614c;
}

/* 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(18, 32, 21, 0.08);
    border: 1px solid #e1ead8;
    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: #16572f;
    background: #eaf6dd;
    border: 1px solid #cfe8bd;
    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: #101c12;
    margin-bottom: 16px;
}

.desktop-intro-box p,
.section-heading p,
.seo-content-box p {
    font-size: 16px;
    line-height: 1.82;
    color: #53614c;
    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 - YENİ YATAY PREMIUM KART TASARIMI */
.services-showcase {
    position: relative;
    overflow: hidden;
    padding: 78px 0;
    background:
        radial-gradient(circle at 8% 14%, rgba(212, 160, 23, 0.12), transparent 30%),
        radial-gradient(circle at 94% 18%, rgba(35, 131, 75, 0.12), transparent 30%),
        linear-gradient(180deg, #f8fbf2 0%, #ffffff 48%, #f5f7ef 100%);
}

.services-showcase::before {
    content: "";
    position: absolute;
    top: -170px;
    right: -170px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(17, 53, 31, 0.055);
}

.services-showcase::after {
    content: "";
    position: absolute;
    bottom: -210px;
    left: -210px;
    width: 460px;
    height: 460px;
    border-radius: 50%;
    background: rgba(212, 160, 23, 0.08);
}

.services-showcase .container {
    position: relative;
    z-index: 2;
}

.services-showcase .section-heading {
    max-width: 900px;
    margin: 0 auto 38px;
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.service-card {
    position: relative;
    overflow: hidden;
    min-height: 250px;
    border-radius: 30px;
    background: #ffffff;
    border: 1px solid #dce8d2;
    box-shadow: 0 20px 48px rgba(18, 32, 21, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-card:hover,
.service-card.is-active {
    transform: translateY(-6px);
    border-color: rgba(35, 131, 75, 0.38);
    box-shadow: 0 28px 64px rgba(18, 32, 21, 0.13);
}

.service-card-link {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    min-height: 100%;
    height: 100%;
    color: inherit;
    text-decoration: none;
}

.service-visual-panel {
    position: relative;
    min-height: 250px;
    background:
        radial-gradient(circle at 52% 44%, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.72) 35%, transparent 66%),
        linear-gradient(135deg, #11351f 0%, #1f6b37 58%, #d4a017 145%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.service-visual-panel::before {
    content: "";
    position: absolute;
    inset: 16px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background:
        linear-gradient(90deg, rgba(255,255,255,0.055) 1px, transparent 1px),
        linear-gradient(0deg, rgba(255,255,255,0.055) 1px, transparent 1px);
    background-size: 24px 24px;
}

.service-visual-panel::after {
    content: "";
    position: absolute;
    width: 190px;
    height: 190px;
    border-radius: 50%;
    background: rgba(255,255,255,0.20);
    filter: blur(1px);
}

.service-number {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 4;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: rgba(255,255,255,0.95);
    color: #11351f;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 900;
    box-shadow: 0 10px 22px rgba(0,0,0,0.14);
}

.service-image-wrap {
    position: relative;
    z-index: 3;
    width: 190px;
    height: 190px;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 18px 18px rgba(0,0,0,0.23));
    transform: scale(1);
    transition: transform 0.28s ease;
}

.service-card:hover .service-image-wrap img,
.service-card.is-active .service-image-wrap img {
    transform: scale(1.09) rotate(-1deg);
}

.service-content {
    position: relative;
    padding: 28px 28px 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-chip {
    display: inline-flex;
    align-self: flex-start;
    margin-bottom: 13px;
    padding: 7px 12px;
    border-radius: 999px;
    background: #fff5cc;
    color: #816000;
    border: 1px solid #f0dc9a;
    font-size: 12px;
    font-weight: 900;
}

.service-content h3 {
    color: #101c12;
    font-size: 25px;
    line-height: 1.16;
    margin: 0 0 12px;
    font-weight: 900;
}

.service-content p {
    color: #53614c;
    font-size: 15.5px;
    line-height: 1.72;
    margin: 0 0 20px;
}

.service-inline-link {
    margin-top: auto;
    display: inline-flex;
    align-self: flex-start;
    align-items: center;
    justify-content: center;
    min-height: 43px;
    padding: 0 16px;
    border-radius: 14px;
    background: #eaf6dd;
    color: #16572f;
    border: 1px solid #cfe8bd;
    font-size: 14px;
    font-weight: 900;
    transition: 0.25s ease;
}

.service-card:hover .service-inline-link,
.service-card.is-active .service-inline-link {
    background: #11351f;
    border-color: #11351f;
    color: #ffffff;
}

.service-card.featured-service {
    border-color: rgba(193, 18, 31, 0.22);
}

.service-card.featured-service .service-visual-panel {
    background:
        radial-gradient(circle at 52% 44%, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.70) 35%, transparent 66%),
        linear-gradient(135deg, #4a0710 0%, #c1121f 58%, #d4a017 145%);
}

.service-card.featured-service .service-inline-link {
    background: #fff1d6;
    color: #8a3a00;
    border-color: #f2d39a;
}

.service-card.featured-service:hover .service-inline-link,
.service-card.featured-service.is-active .service-inline-link {
    background: #c1121f;
    border-color: #c1121f;
    color: #ffffff;
}

/* BELGELER */
.license-section {
    padding: 68px 0;
    background:
        radial-gradient(circle at 12% 8%, rgba(212,160,23,0.14), transparent 28%),
        linear-gradient(180deg, #ffffff 0%, #f3f8ea 100%);
}

.license-box {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 34px;
    align-items: center;
    background: #ffffff;
    border-radius: 30px;
    padding: 42px;
    border: 1px solid #dce8d2;
    box-shadow: 0 18px 44px rgba(18, 32, 21, 0.08);
}

.license-content h2 {
    font-size: 38px;
    line-height: 1.16;
    margin-bottom: 16px;
    color: #101c12;
}

.license-content p {
    font-size: 16px;
    line-height: 1.82;
    color: #53614c;
    margin-bottom: 22px;
}

.license-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 20px;
    border-radius: 12px;
    background: #11351f;
    color: #ffffff;
    font-weight: 900;
    text-decoration: none;
}

.license-cards {
    display: grid;
    gap: 14px;
}

.license-card {
    background: #f8fbf2;
    border: 1px solid #dce8d2;
    border-radius: 20px;
    padding: 20px;
}

.license-card span {
    display: inline-flex;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: #d4a017;
    color: #11180f;
    font-weight: 900;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.license-card strong {
    display: block;
    color: #101c12;
    font-size: 20px;
    margin-bottom: 8px;
}

.license-card p {
    color: #53614c;
    font-size: 15px;
    line-height: 1.65;
}

/* SÜREÇ */
.process-section {
    padding: 68px 0;
    background:
        radial-gradient(circle at 12% 8%, rgba(35,131,75,0.10), transparent 28%),
        linear-gradient(180deg, #ffffff 0%, #f3f8ea 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 #dce8d2;
    box-shadow: 0 14px 34px rgba(18, 32, 21, 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: #11351f;
    color: #f5c542;
    font-weight: 900;
}

.process-card h3 {
    font-size: 20px;
    color: #101c12;
    margin-bottom: 10px;
}

.process-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #53614c;
}

/* UYGULAMA ALANLARI */
.application-section {
    padding: 68px 0;
    background: #ffffff;
}

.application-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.application-card {
    background: #f8fbf2;
    border: 1px solid #dce8d2;
    border-radius: 24px;
    padding: 26px;
    box-shadow: 0 12px 28px rgba(18, 32, 21, 0.05);
}

.application-card span {
    display: inline-flex;
    font-size: 34px;
    margin-bottom: 16px;
}

.application-card h3 {
    color: #101c12;
    font-size: 22px;
    margin-bottom: 10px;
}

.application-card p {
    color: #53614c;
    font-size: 15px;
    line-height: 1.7;
}

/* BÖLGELER */
.area-section {
    padding: 68px 0;
}

.area-box {
    display: grid;
    grid-template-columns: 0.95fr 1.15fr;
    gap: 34px;
    align-items: center;
    background: #ffffff;
    border-radius: 30px;
    padding: 42px;
    border: 1px solid #dce8d2;
    box-shadow: 0 18px 44px rgba(18, 32, 21, 0.08);
}

.area-content h2 {
    font-size: 36px;
    line-height: 1.17;
    margin-bottom: 16px;
    color: #101c12;
}

.area-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #53614c;
    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: #11351f;
    color: #ffffff;
    font-weight: 900;
    text-decoration: none;
}

.area-side {
    display: grid;
    gap: 18px;
}

.area-panel {
    position: relative;
    overflow: hidden;
    background: #f8fbf2;
    border: 1px solid #dce8d2;
    border-radius: 24px;
    padding: 24px;
}

.area-panel::before {
    content: "";
    position: absolute;
    top: -70px;
    right: -70px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: rgba(212, 160, 23, 0.14);
}

.area-panel-dark {
    background: linear-gradient(135deg, #101a11 0%, #11351f 54%, #23834b 100%);
    border-color: rgba(245, 197, 66, 0.28);
}

.area-panel-title {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.area-panel-title span {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: #eaf6dd;
    color: #1f6b37;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.area-panel-dark .area-panel-title span {
    background: #f5c542;
    color: #101a11;
}

.area-panel-title h3 {
    font-size: 22px;
    line-height: 1.25;
    color: #101c12;
}

.area-panel-dark .area-panel-title h3 {
    color: #ffffff;
}

.area-list {
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.area-list span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 14px;
    border-radius: 999px;
    background: #ffffff;
    color: #16572f;
    border: 1px solid #cfe8bd;
    font-size: 14px;
    font-weight: 900;
}

.area-panel-dark .area-list span {
    background: rgba(255,255,255,0.10);
    color: #ffffff;
    border-color: rgba(255,255,255,0.18);
}

/* 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(245,197,66,0.23), transparent 32%),
        linear-gradient(135deg, #08140d 0%, #11351f 48%, #23834b 100%);
    box-shadow: 0 24px 55px rgba(17, 53, 31, 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(245,197,66,0.15);
    border-color: rgba(245,197,66,0.30);
    color: #ffe88d;
}

.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-call {
    background: #f5c542;
    color: #11180f;
}

.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 #dce8d2;
    box-shadow: 0 18px 44px rgba(18, 32, 21, 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 #dce8d2;
    border-radius: 18px;
    background: #f8fbf2;
    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: #101c12;
}

.faq-question span {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #eaf6dd;
    color: #1f6b37;
    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: #53614c;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-question span {
    background: #11351f;
    color: #f5c542;
}

/* BLOG */
.home-latest-posts-section {
    padding: 68px 0;
    background: #f5f7ef;
}

.home-latest-posts-heading {
    max-width: 840px;
    margin: 0 auto 30px;
    text-align: center;
}

.home-latest-posts-heading h2 {
    font-size: 36px;
    line-height: 1.18;
    color: #101c12;
    margin-bottom: 12px;
}

.home-latest-posts-heading p {
    font-size: 16px;
    line-height: 1.75;
    color: #53614c;
}

.home-latest-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.latest-post-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 26px;
    border: 1px solid #dce8d2;
    box-shadow: 0 14px 34px rgba(18, 32, 21, 0.06);
    min-height: 210px;
}

.latest-post-card span {
    display: inline-flex;
    margin-bottom: 14px;
    padding: 7px 11px;
    border-radius: 999px;
    background: #eaf6dd;
    color: #16572f;
    font-size: 12px;
    font-weight: 900;
}

.latest-post-card h3 {
    font-size: 21px;
    line-height: 1.28;
    color: #101c12;
    margin-bottom: 10px;
}

.latest-post-card p {
    font-size: 15px;
    line-height: 1.68;
    color: #53614c;
}

.home-latest-posts-footer {
    margin-top: 28px;
    text-align: center;
}

.home-latest-posts-all-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 14px;
    background: #11351f;
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 900;
}

/* FOOTER */
.site-footer {
    background: #0e4928;
    color: #ffffff;
    padding: 58px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.35fr 0.85fr 0.85fr 1fr;
    gap: 34px;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    line-height: 0;
    margin-bottom: 18px;
}

.footer-logo img {
    display: block;
    width: auto;
    max-width: 280px;
    max-height: 74px;
    object-fit: contain;
}

.footer-about-text {
    color: rgba(255,255,255,0.78);
    font-size: 15px;
    line-height: 1.75;
}

.footer-col h3 {
    color: #ffffff;
    font-size: 20px;
    margin-bottom: 18px;
}

.footer-links {
    display: grid;
    gap: 10px;
    list-style: none;
}

.footer-links a {
    color: rgba(255,255,255,0.76);
    text-decoration: none;
    font-size: 15px;
}

.footer-links a:hover {
    color: #240101;
}

.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.10);
    color: #f5c542;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.footer-bottom {
    margin-top: 38px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.12);
    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: 22px;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    z-index: 1200;
    color: #ffffff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 23px;
    font-weight: 900;
    box-shadow: 0 14px 30px rgba(0,0,0,0.25);
}

.floating-call {
    bottom: 92px;
    background: #c1121f;
}

.floating-whatsapp {
    bottom: 24px;
    background: #16a34a;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
    .main-header {
        padding: 10px 5%;
    }

    .logo img {
        max-width: 240px;
        max-height: 58px;
    }

    .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: 1100px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card-link {
        grid-template-columns: 230px minmax(0, 1fr);
    }
}

@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);
    }

    .home-latest-posts-grid,
    .application-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .area-box,
    .license-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: 48px;
    }

    .hamburger {
        display: block;
        font-size: 28px;
        background: none;
        border: none;
        cursor: pointer;
        color: #101c12;
        line-height: 1;
    }

    .navigation {
        display: none;
        width: 100%;
        background: #ffffff;
        position: absolute;
        top: 100%;
        left: 0;
        box-shadow: 0 10px 24px rgba(18, 32, 21, 0.12);
        border-top: 1px solid #e1ead8;
    }

    .navigation.active {
        display: block;
    }

    .navigation ul {
        flex-direction: column;
        padding: 0;
        text-align: center;
    }

    .navigation ul li {
        margin: 0;
        border-bottom: 1px solid #edf2e6;
        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: #f8fbf2;
        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: 520px;
        opacity: 1;
        visibility: visible;
        padding: 4px 0;
    }

    .dropdown-menu li a {
        font-size: 13px;
        padding: 9px 16px !important;
    }

    .mobile-only-nav {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        padding: 12px 16px 14px;
    }

    .btn-contact {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 44px;
        padding: 0 12px;
        border-radius: 12px;
        color: #ffffff;
        text-decoration: none;
        font-size: 14px;
        font-weight: 900;
    }

    .btn-call {
        background: #c1121f;
    }

    .btn-whatsapp {
        background: #16a34a;
    }

    .hero {
        height: auto;
        min-height: 490px;
        align-items: flex-end;
        padding: 0 0 28px;
        background-image:
            linear-gradient(180deg, rgba(8,20,13,0.24) 0%, rgba(8,20,13,0.42) 42%, rgba(8,20,13,0.90) 100%),
            url("img/hero-ilaclama-mobile.webp");
        background-position: center top;
    }

    .hero::before,
    .hero-overlay {
        display: none;
    }

    .hero-content {
        width: 100%;
        padding: 0 16px;
    }

    .hero h1 {
        font-size: 34px;
        line-height: 1.08;
        margin-bottom: 12px;
    }

    .hero p {
        font-size: 16px;
        line-height: 1.55;
        margin-bottom: 15px;
    }

    .desktop-hero-btns {
        display: none;
    }

    .hero-btns-mobile {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .cta-button {
        min-height: 48px;
        padding: 0 14px;
        font-size: 15px;
        border-radius: 12px;
    }

    .advantages {
        display: none;
    }

    .mobile-feature-combo {
        display: block;
        padding: 18px 0 34px;
        background: #f5f7ef;
    }

    .mobile-feature-main {
        background: linear-gradient(135deg, #0d2516 0%, #11351f 55%, #23834b 100%);
        color: #ffffff;
        border-radius: 22px;
        padding: 22px 18px;
        box-shadow: 0 18px 40px rgba(17, 53, 31, 0.20);
        margin-bottom: 14px;
    }

    .mobile-feature-badge {
        display: inline-block;
        padding: 7px 11px;
        border-radius: 999px;
        background: rgba(245,197,66,0.16);
        color: #ffe88d;
        font-size: 11px;
        font-weight: 900;
        margin-bottom: 10px;
    }

    .mobile-feature-main h2 {
        font-size: 24px;
        line-height: 1.18;
        margin-bottom: 8px;
    }

    .mobile-feature-main p {
        color: rgba(255,255,255,0.84);
        font-size: 14px;
        line-height: 1.6;
    }

    .mobile-feature-subgrid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .mobile-feature-card {
        background: #ffffff;
        border: 1px solid #dce8d2;
        border-radius: 18px;
        padding: 16px 14px;
        box-shadow: 0 12px 26px rgba(18, 32, 21, 0.06);
    }

    .mobile-feature-card-icon {
        width: 42px;
        height: 42px;
        border-radius: 14px;
        background: #eaf6dd;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 22px;
        margin-bottom: 10px;
    }

    .mobile-feature-card h3 {
        color: #101c12;
        font-size: 17px;
        margin-bottom: 5px;
    }

    .mobile-feature-card p {
        color: #53614c;
        font-size: 13px;
        line-height: 1.45;
    }

    .desktop-intro,
    .services-showcase,
    .license-section,
    .process-section,
    .application-section,
    .area-section,
    .faq-section,
    .home-latest-posts-section {
        padding: 44px 0;
    }

    .home-cta-section,
    .seo-content-section {
        padding: 0 0 44px;
    }

    .desktop-intro-box,
    .license-box,
    .area-box,
    .home-cta-box,
    .seo-content-box {
        border-radius: 22px;
        padding: 24px 18px;
    }

    .desktop-intro-box h2,
    .section-heading h2,
    .seo-content-box h2,
    .license-content h2,
    .area-content h2,
    .home-cta-content h2,
    .home-latest-posts-heading h2 {
        font-size: 27px;
    }

    .desktop-intro-box p,
    .section-heading p,
    .seo-content-box p,
    .license-content p,
    .area-content p,
    .home-cta-content p {
        font-size: 15px;
        line-height: 1.7;
    }

    .services-grid,
    .process-grid,
    .home-latest-posts-grid,
    .application-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        min-height: auto;
        border-radius: 24px;
    }

    .service-card-link {
        grid-template-columns: 1fr;
    }

    .service-visual-panel {
        min-height: 230px;
    }

    .service-image-wrap {
        width: 178px;
        height: 178px;
    }

    .service-content {
        padding: 22px 18px 22px;
    }

    .service-content h3 {
        font-size: 22px;
    }

    .service-content p {
        font-size: 15px;
    }

    .service-inline-link {
        width: 100%;
    }

    .process-card,
    .application-card,
    .latest-post-card {
        border-radius: 20px;
        padding: 22px 18px;
    }

    .area-list span {
        font-size: 13px;
        min-height: 34px;
        padding: 0 12px;
    }

    .home-cta-actions {
        width: 100%;
        min-width: 100%;
        flex-direction: column;
    }

    .home-cta-btn {
        width: 100%;
    }

    .faq-question {
        font-size: 15px;
        padding: 16px;
        gap: 12px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 26px;
        text-align: center;
    }

    .site-footer {
        text-align: center;
    }

    .site-footer .footer-logo,
    .footer-logo {
        justify-content: center;
    }

    .site-footer .footer-about-text,
    .footer-about-text {
        text-align: center;
    }

    .site-footer .footer-links,
    .footer-links {
        align-items: center;
        justify-items: center;
    }

    .site-footer .footer-contact-list,
    .footer-contact-list {
        align-items: center;
    }

    .site-footer .footer-contact-item,
    .footer-contact-item {
        justify-content: center;
        text-align: center;
    }

    .floating-call,
    .floating-whatsapp {
        width: 50px;
        height: 50px;
        right: 16px;
    }

    .floating-call {
        bottom: 82px;
    }

    .floating-whatsapp {
        bottom: 20px;
    }
}

@media (max-width: 420px) {
    .service-visual-panel {
        min-height: 205px;
    }

    .service-image-wrap {
        width: 158px;
        height: 158px;
    }

    .service-number {
        width: 38px;
        height: 38px;
        border-radius: 12px;
        font-size: 12px;
    }
}

/* SADECE MOBİL H1 BAŞLIK YUKARI ALMA */
@media (max-width: 768px) {
    .hero h1 {
        transform: translateY(-128px);
        margin-bottom: -6px;
    }
}
@media (min-width: 769px) {
    .advantages .advantage-card {
        border: 2px solid transparent;
        background:
            linear-gradient(#ffffff, #ffffff) padding-box,
            linear-gradient(135deg, #1f6b37 0%, #23834b 42%, #c1121f 100%) border-box;
        box-shadow:
            0 18px 42px rgba(18, 32, 21, 0.11),
            0 0 0 4px rgba(31, 107, 55, 0.06);
    }

    .advantages .advantage-card:hover {
        transform: translateY(-5px);
        box-shadow:
            0 24px 55px rgba(18, 32, 21, 0.14),
            0 0 0 4px rgba(193, 18, 31, 0.08);
    }
}
/* TÜM HİZMETLERİMİZ BUTONU */
.all-services-button-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 34px;
}

.all-services-main-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 26px;
    border-radius: 14px;
    background: #11351f;
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 900;
    box-shadow: 0 14px 30px rgba(17, 53, 31, 0.16);
    transition: 0.25s ease;
}

.all-services-main-button:hover {
    background: #c1121f;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 18px 38px rgba(193, 18, 31, 0.20);
}

@media (max-width: 768px) {
    .all-services-button-wrap {
        margin-top: 26px;
    }

    .all-services-main-button {
        width: 100%;
        max-width: 320px;
    }
}