*{
    box-sizing:border-box;
}

html, body{
    margin:0;
    padding:0;
    scroll-behavior:smooth;
}

body{
    font-family:var(--font-family, Arial, sans-serif);
    background:var(--bg-color, #f3f4f6);
    color:var(--text-color, #111827);
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
}

.container{
    width:min(1200px, calc(100% - 32px));
    margin:0 auto;
}

.site-header{
    position:absolute;
    top:0;
    left:0;
    right:0;
    z-index:20;
    padding:20px 0;
}

.header-inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:16px;
}

.site-nav{
    display:flex;
    align-items:center;
    gap:18px;
    flex-wrap:wrap;
}


.nav-link:hover{
    opacity:1;
    transform:translateY(-1px);
}

.hero{
    position:relative;
    min-height:100vh;
    display:flex;
    align-items:center;
    overflow:hidden;
}

.hero-bg{
    position:absolute;
    inset:0;
    z-index:1;
}

.hero-bg img{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center;
}

.hero-overlay{
    position:absolute;
    inset:0;
    z-index:2;
    background:linear-gradient(
        135deg,
        rgba(0,0,0,0.75) 0%,
        rgba(0,0,0,0.45) 45%,
        rgba(0,0,0,0.7) 100%
    );
}

.hero-content{
    position:relative;
    z-index:3;
    padding:140px 0 80px;
    color:#fff;
    max-width:850px;
}

.hero-badge{
    display:inline-flex;
    align-items:center;
    padding:10px 16px;
    border-radius:999px;
    background:rgba(255,255,255,0.12);
    backdrop-filter:blur(8px);
    font-size:14px;
    font-weight:700;
    margin-bottom:20px;
}

.hero h1{
    margin:0 0 18px;
    font-size:56px;
    line-height:1.05;
    font-weight:900;
    letter-spacing:-0.03em;
}

.hero h2{
    margin:0 0 18px;
    font-size:28px;
    line-height:1.25;
    font-weight:700;
    color:f8be0c;
}

.hero p{
    margin:0 0 28px;
    font-size:18px;
    line-height:1.8;
    color:rgba(255,255,255,0.92);
    max-width:760px;
}

.hero-buttons{
    display:flex;
    flex-wrap:wrap;
    gap:14px;
}

.hero-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-width:160px;
    padding:15px 24px;
    border-radius:var(--border-radius, 14px);
    font-weight:800;
    transition:0.2s ease;
}

.hero-btn.primary{
    background:var(--button-color, #166534);
    color:var(--button-text-color, #fff);
}

.hero-btn.secondary{
    background:rgba(255,255,255,0.14);
    color:#fff;
    border:1px solid rgba(255,255,255,0.2);
    backdrop-filter:blur(8px);
}

.hero-btn:hover{
    transform:translateY(-1px);
}

.section-head{
    max-width:760px;
    margin:0 auto 40px;
    text-align:center;
}

.section-badge{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:10px 16px;
    border-radius:999px;
    background:rgba(22,101,52,0.08);
    color:var(--primary-color, #166534);
    font-size:14px;
    font-weight:800;
    margin-bottom:16px;
}

.section-head h2{
    margin:0 0 14px;
    font-size:42px;
    line-height:1.1;
    color:var(--heading-color, #0f172a);
    font-weight:900;
    letter-spacing:-0.02em;
}

.section-head p{
    margin:0;
    font-size:17px;
    line-height:1.8;
    color:#4b5563;
}

.empty-box{
    background:#fff;
    border:1px solid #e5e7eb;
    border-radius:var(--border-radius, 14px);
    padding:24px;
    text-align:center;
    color:#6b7280;
}

/* Hizmetler */
.services-section{
    padding:90px 0;
    background:#fff;
}

.services-grid{
    display:grid;
    grid-template-columns:repeat(3, minmax(0, 1fr));
    gap:24px;
}

.service-card{
    background:#fff;
    border:1px solid #e5e7eb;
    border-radius:var(--border-radius, 14px);
    padding:26px;
    box-shadow:0 10px 30px rgba(0,0,0,0.04);
}

.service-card h3{
    margin:0 0 14px;
    font-size:24px;
    line-height:1.2;
    color:var(--heading-color, #0f172a);
    font-weight:800;
}

.service-desc{
    margin:0 0 18px;
    color:#4b5563;
    line-height:1.7;
}

.service-children{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin-bottom:18px;
}

.service-chip{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:9px 14px;
    border-radius:999px;
    background:rgba(245,158,11,0.10);
    color:#92400e;
    font-size:13px;
    font-weight:700;
}

.service-detail{
    color:#374151;
    line-height:1.8;
    font-size:15px;
}

/* Neden Biz */
.whyus-section{
    padding:90px 0;
    background:#f8fafc;
}

.whyus-grid{
    display:grid;
    grid-template-columns:repeat(4, minmax(0, 1fr));
    gap:24px;
}

.whyus-card{
    background:#fff;
    border:1px solid #e5e7eb;
    border-radius:var(--border-radius, 14px);
    padding:26px;
    box-shadow:0 10px 30px rgba(0,0,0,0.04);
    text-align:left;
}

.whyus-icon{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-width:54px;
    min-height:54px;
    padding:10px 14px;
    margin-bottom:16px;
    border-radius:14px;
    background:rgba(22,101,52,0.10);
    color:var(--primary-color, #166534);
    font-weight:800;
    font-size:14px;
}

.whyus-card h3{
    margin:0 0 12px;
    font-size:22px;
    line-height:1.25;
    color:var(--heading-color, #0f172a);
    font-weight:800;
}

.whyus-card p{
    margin:0;
    color:#4b5563;
    line-height:1.8;
    font-size:15px;
}

/* Bölgeler */
.regions-section{
    padding:90px 0;
    background:#f8fafc;
}

.regions-grid{
    display:grid;
    grid-template-columns:repeat(3, minmax(0, 1fr));
    gap:24px;
}

.region-card{
    background:#fff;
    border:1px solid #e5e7eb;
    border-radius:var(--border-radius, 14px);
    padding:26px;
    box-shadow:0 10px 30px rgba(0,0,0,0.04);
}

.region-card h3{
    margin:0 0 14px;
    font-size:24px;
    line-height:1.2;
    color:var(--heading-color, #0f172a);
    font-weight:800;
}

.region-desc{
    margin:0 0 18px;
    color:#4b5563;
    line-height:1.7;
}

.region-children{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin-bottom:18px;
}

.region-chip{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:9px 14px;
    border-radius:999px;
    background:rgba(22,101,52,0.10);
    color:var(--primary-color, #166534);
    font-size:13px;
    font-weight:700;
}

.region-detail{
    color:#374151;
    line-height:1.8;
    font-size:15px;
}

/* Galeri */
.gallery-section{
    padding:70px 0;
    background:#fff;
}

/* 3 yerine 4 kolon yapıyoruz (yarı yarıya küçülme hissi) */
.gallery-grid{
    display:grid;
    grid-template-columns:repeat(4, minmax(0, 1fr));
    gap:18px;
}

/* kart */
.gallery-card{
    background:#fff;
    border:1px solid #e5e7eb;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 6px 18px rgba(0,0,0,0.05);
    transition:all .25s ease;
}

/* hover büyüme efekti */
.gallery-card:hover{
    transform:scale(1.08);
    z-index:10;
    box-shadow:0 20px 40px rgba(0,0,0,0.15);
}

/* görsel alanı küçült */
.gallery-image-wrap{
    position:relative;
    overflow:hidden;
    aspect-ratio:4 / 3;
    background:#f3f4f6;
}

/* görsel zoom */
.gallery-image{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:transform .4s ease;
}

.gallery-card:hover .gallery-image{
    transform:scale(1.12);
}

/* içerik küçült */
.gallery-content{
    padding:12px;
}

.gallery-content h3{
    margin:0;
    font-size:16px;
    color:#0f172a;
    font-weight:700;
}

@media (max-width: 1024px){
    .gallery-grid{
        grid-template-columns:repeat(3, 1fr);
    }
}

@media (max-width: 768px){
    .gallery-grid{
        grid-template-columns:repeat(2, 1fr);
    }
}

@media (max-width: 480px){
    .gallery-grid{
        grid-template-columns:1fr;
    }

    .gallery-card:hover{
        transform:none; /* mobilde hover yok zaten */
    }
}

/* LIGHTBOX */
.lightbox{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,0.88);
    display:none;
    align-items:center;
    justify-content:center;
    z-index:9999;
    padding:20px;
}

.lightbox-img{
    max-width:90%;
    max-height:85vh;
    border-radius:14px;
    box-shadow:0 20px 60px rgba(0,0,0,0.45);
    animation:zoomIn .25s ease;
}

.lightbox-close{
    position:absolute;
    top:24px;
    right:34px;
    font-size:42px;
    line-height:1;
    color:#fff;
    cursor:pointer;
    user-select:none;
}

.gallery-image{
    cursor:pointer;
}

@keyframes zoomIn{
    from{
        transform:scale(.88);
        opacity:0;
    }
    to{
        transform:scale(1);
        opacity:1;
    }
}

/* Google Widget */
.google-widget-section{
    padding:90px 0;
    background:#f8fafc;
}

.google-widget-box{
    background:#fff;
    border:1px solid #e5e7eb;
    border-radius:var(--border-radius, 14px);
    padding:24px;
    box-shadow:0 10px 30px rgba(0,0,0,0.04);
    overflow:hidden;
}

/* =========================
   İLETİŞİM - PANEL UYUMLU MODERN
========================= */

.contact-section{
    padding:100px 0;
    background:#f8f2e4;
}

.contact-head{
    max-width:760px;
    margin:0 auto 38px;
    text-align:center;
}

.contact-badge{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:38px;
    padding:0 18px;
    border-radius:999px;
    background:#f7e8dc;
    color:#ef4444;
    font-size:13px;
    font-weight:800;
    letter-spacing:.08em;
    margin-bottom:16px;
}

.contact-head h2{
    margin:0 0 14px;
    font-size:clamp(34px, 4vw, 64px);
    line-height:1.08;
    font-weight:900;
    color:#0f172a;
    letter-spacing:-0.03em;
}

.contact-head p{
    margin:0 auto 8px;
    max-width:720px;
    font-size:18px;
    line-height:1.75;
    color:#64748b;
}

.contact-head p strong{
    color:#0f172a;
}

.form-success-box{
    background:#dcfce7;
    color:#166534;
    border-radius:14px;
    padding:14px 16px;
    margin:0 auto 22px;
    max-width:760px;
    font-weight:700;
    text-align:center;
}

.contact-grid{
    display:grid;
    grid-template-columns:420px 1fr;
    gap:30px;
    align-items:start;
}

.contact-left{
    display:flex;
    flex-direction:column;
    gap:16px;
}

.contact-info-box{
    background:#fff;
    border:1px solid rgba(15,23,42,.06);
    border-radius:18px;
    padding:22px 20px;
    display:flex;
    align-items:flex-start;
    gap:14px;
    box-shadow:0 10px 28px rgba(0,0,0,.04);
}

.contact-info-icon{
    width:40px;
    height:40px;
    min-width:40px;
    border-radius:12px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:18px;
}

.contact-info-icon.phone{
    background:#fee2e2;
    color:#ef4444;
}

.contact-info-icon.whatsapp{
    background:#dcfce7;
    color:#16a34a;
}

.contact-info-icon.address{
    background:#fef3c7;
    color:#d97706;
}

.contact-info-text small{
    display:block;
    margin-bottom:6px;
    font-size:12px;
    font-weight:800;
    letter-spacing:.08em;
    color:#94a3b8;
    text-transform:uppercase;
}

.contact-info-text strong{
    display:block;
    font-size:18px;
    line-height:1.45;
    font-weight:800;
    color:#0f172a;
    margin-bottom:4px;
}

.contact-info-text span,
.contact-info-text a{
    font-size:15px;
    line-height:1.7;
    color:#475569;
    text-decoration:none;
}

.contact-info-text a:hover{
    color:#166534;
}

.contact-big-whatsapp{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    min-height:56px;
    border-radius:14px;
    background:#22c55e;
    color:#fff;
    text-decoration:none;
    font-size:18px;
    font-weight:800;
    box-shadow:0 14px 30px rgba(34,197,94,.20);
    transition:all .2s ease;
}

.contact-big-whatsapp:hover{
    background:#16a34a;
    transform:translateY(-2px);
}

.contact-right{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.contact-card{
    background:#fff;
    border:1px solid rgba(15,23,42,.06);
    border-radius:22px;
    padding:24px;
    box-shadow:0 12px 30px rgba(0,0,0,.04);
}

.contact-map-card{
    padding:0;
    overflow:hidden;
}

.contact-map iframe{
    width:100%;
    min-height:410px;
    border:0;
    display:block;
}

.contact-form-card h3{
    margin:0 0 14px;
    font-size:28px;
    line-height:1.2;
    color:#0f172a;
    font-weight:900;
}

.contact-form-desc{
    margin-bottom:16px;
    font-size:16px;
    line-height:1.75;
    color:#64748b;
}

.contact-form{
    display:grid;
    gap:14px;
}

.contact-form input,
.contact-form textarea{
    width:100%;
    border:1px solid #d8dee6;
    border-radius:14px;
    padding:15px 16px;
    font-size:15px;
    outline:none;
    background:#fff;
    transition:border-color .2s ease, box-shadow .2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus{
    border-color:#16a34a;
    box-shadow:0 0 0 4px rgba(34,197,94,.10);
}

.contact-form textarea{
    min-height:150px;
    resize:vertical;
}

.contact-form button{
    border:none;
    background:#166534;
    color:#fff;
    border-radius:14px;
    padding:15px 22px;
    font-size:16px;
    font-weight:800;
    cursor:pointer;
    transition:all .2s ease;
}

.contact-form button:hover{
    background:#14532d;
    transform:translateY(-1px);
}

.contact-email-note{
    font-size:15px;
    line-height:1.7;
    color:#475569;
    padding:0 4px;
}

.contact-email-note strong{
    color:#0f172a;
}

/* Tablet */
@media (max-width: 1100px){
    .contact-grid{
        grid-template-columns:1fr;
    }
}

/* Mobil */
@media (max-width: 680px){
    .contact-section{
        padding:75px 0;
    }

    .contact-head{
        margin-bottom:28px;
    }

    .contact-head h2{
        font-size:36px;
    }

    .contact-head p{
        font-size:16px;
    }

    .contact-grid{
        gap:20px;
    }

    .contact-card{
        padding:20px;
        border-radius:18px;
    }

    .contact-map-card{
        padding:0;
    }

    .contact-info-box{
        padding:18px 16px;
        border-radius:16px;
    }

    .contact-info-text strong{
        font-size:17px;
    }

    .contact-info-text span,
    .contact-info-text a{
        font-size:14px;
    }

    .contact-big-whatsapp{
        min-height:52px;
        font-size:16px;
        border-radius:12px;
    }

    .contact-map iframe{
        min-height:300px;
    }

    .contact-form-card h3{
        font-size:24px;
    }

    .contact-form input,
    .contact-form textarea{
        border-radius:12px;
        padding:14px 14px;
    }

    .contact-form button{
        border-radius:12px;
        font-size:15px;
    }
}

/* CTA */
.cta-section{
    position:relative;
    padding:90px 0;
    background:linear-gradient(135deg, rgba(0,0,0,0.75), rgba(0,0,0,0.55));
    background-size:cover;
    background-position:center;
    overflow:hidden;
}

.cta-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.45);
}

.cta-content{
    position:relative;
    z-index:2;
    text-align:center;
    color:#fff;
    max-width:850px;
}

.cta-content h2{
    margin:0 0 16px;
    font-size:42px;
    line-height:1.1;
    font-weight:900;
}

.cta-content p{
    margin:0 0 24px;
    font-size:18px;
    line-height:1.8;
    color:rgba(255,255,255,0.92);
}

.cta-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:15px 24px;
    border-radius:var(--border-radius, 14px);
    background:var(--button-color, #166534);
    color:var(--button-text-color, #fff);
    font-weight:800;
}

/* Footer */
.site-footer{
    background:var(--footer-bg, #111827);
    color:var(--footer-text, #ffffff);
    padding-top:60px;
}

.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr;
    gap:32px;
    padding-bottom:40px;
}

.footer-col h3,
.footer-col h4{
    margin:0 0 16px;
    color:inherit;
}

.footer-col p{
    margin:0 0 12px;
    color:inherit;
    line-height:1.8;
    opacity:0.92;
}

.footer-links{
    list-style:none;
    padding:0;
    margin:0;
}

.footer-links li{
    margin-bottom:10px;
}

.footer-links a{
    color:inherit;
    opacity:0.92;
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,0.1);
    padding:18px 0;
}

.footer-bottom-inner{
    display:flex;
    justify-content:space-between;
    gap:16px;
    flex-wrap:wrap;
    font-size:14px;
    opacity:0.88;
}

@media (max-width: 991px){
    .site-nav{
        width:100%;
        justify-content:flex-start;
        order:3;
    }

    .hero h1{
        font-size:42px;
    }

    .hero h2{
        font-size:24px;
    }

    .hero p{
        font-size:17px;
    }

    .services-grid,
    .regions-grid,
    .gallery-grid{
        grid-template-columns:repeat(2, minmax(0, 1fr));
    }

    .whyus-grid{
        grid-template-columns:repeat(2, minmax(0, 1fr));
    }

    .section-head h2{
        font-size:34px;
    }

    .contact-grid,
    .footer-grid{
        grid-template-columns:1fr;
    }

    .cta-content h2{
        font-size:34px;
    }
}

@media (max-width: 640px){
    .site-header{
        padding:16px 0;
    }

    .header-inner{
        flex-direction:column;
        align-items:flex-start;
    }

    
    .logo-text{
        font-size:24px;
    }

    .site-nav{
        flex-direction:column;
        align-items:flex-start;
        gap:10px;
    }

    .hero-content{
        padding:150px 0 70px;
    }

    .hero h1{
        font-size:27px;
    }

    .hero h2{
        font-size:21px;
    }

    .hero p{
        font-size:16px;
        line-height:1.7;
    }

    .hero-buttons{
        flex-direction:column;
        align-items:stretch;
    }

    .hero-btn{
        width:100%;
    }

    .services-section,
    .whyus-section,
    .regions-section,
    .gallery-section,
    .google-widget-section,
    .contact-section,
    .cta-section{
        padding:70px 0;
    }

    .services-grid,
    .regions-grid,
    .gallery-grid,
    .whyus-grid{
        grid-template-columns:1fr;
    }

    .section-head h2{
        font-size:28px;
    }

    .service-card,
    .region-card,
    .contact-card,
    .whyus-card{
        padding:22px;
    }

    .google-widget-box{
        padding:16px;
    }

    .cta-content h2{
        font-size:28px;
    }

    .cta-content p{
        font-size:16px;
    }

    .contact-card h3{
        font-size:24px;
    }
}
/* =========================
   HEADER - 2. SS GİBİ
========================= */

.site-header {
  position: relative;
  z-index: 9999;
  padding: 0;
  background: transparent;
  transition: all 0.3s ease;
}

.site-header .header-container {
  width: 100%;
  margin: 0;
}

.header-box {
  min-height: 100px;
  background: #ffffff;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 26px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
  transition: all 0.3s ease;
}

.logo-area {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-left: 0px;
}

.logo-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.site-logo {
  max-height: 170px;
  width: auto;
  display: block;
}

.logo-text {
  font-size: 30px;
  font-weight: 800;
  color: var(--heading-color);
  line-height: 1.1;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  flex: 1;
}

.nav-link {
  position: relative;
  color: #ff8a1f !important;
  text-decoration: none;
  font-size: 17px;
  font-weight: 700;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.nav-link:hover {
  color: var(--accent-color);
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0;
  height: 2px;
  background: var(--accent-color);
  transition: width 0.25s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.header-phone,
.header-whatsapp {
  height: 46px;
  padding: 0 18px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
  transition: all 0.25s ease;
}

.header-phone {
  color: #ff8a1f;
  background: #ffffff;
  border: 1px solid rgba(22, 101, 52, 0.18);
}

.header-phone:hover {
  background: #f7fff9;
  border-color: var(--primary-color);
}

.header-whatsapp {
  color: #ffffff;
  background: #25D366;
  border: 1px solid #25D366;
}

.header-whatsapp:hover {
  background: #1fb85a;
  border-color: #1fb85a;
}

.header-action-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
}

.mobile-menu-btn {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(22, 101, 52, 0.15);
  background: #ffffff;
  color: var(--primary-color);
  border-radius: 12px;
  font-size: 22px;
  cursor: pointer;
  flex-shrink: 0;
}

/* Masaüstü sticky */
@media (min-width: 992px) {
  .site-header {
    position: sticky;
    top: 0;
  }

  .site-header.is-scrolled .header-box {
    min-height: 78px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.10);
  }

  .site-header.is-scrolled .site-logo {
    max-height: 54px;
  }
}

/* Laptop */
@media (max-width: 1280px) {
  .site-nav {
    gap: 24px;
  }

  .nav-link {
    font-size: 15px;
  }

  .header-phone,
  .header-whatsapp {
    font-size: 14px;
    padding: 0 14px;
  }
}

/* Tablet/Mobil */
@media (max-width: 991px) {
  .site-header {
    position: relative;
  }

  .site-header .header-container {
    width: 100%;
  }

  .header-box {
    min-height: 76px;
    padding: 0 26px;
  }

  .site-logo {
    max-height: 100px;
  }

  .header-actions {
    display: none;
  }

  .mobile-menu-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 12px;
    right: 12px;
    background: #ffffff;
    border: 1px solid rgba(22, 101, 52, 0.10);
    border-radius: 18px;
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.10);
    padding: 14px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    z-index: 999;
  }

  .site-nav.is-open {
    display: flex;
  }

  .nav-link {
    width: 100%;
    padding: 6px 0;
    font-size: 16px;
  }

  .nav-link::after {
    display: none;
  }
}
/* =========================
   MODERN HERO
========================= */

.hero-modern {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: 0;
}

.hero-modern .hero-bg,
.hero-modern .hero-bg picture,
.hero-modern .hero-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-modern .hero-bg img {
  object-fit: cover;
}

.hero-modern .hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.48);
  z-index: 1;
}

.hero-modern .hero-overlay-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at left center, rgba(22, 101, 52, 0.35), transparent 42%),
    linear-gradient(90deg, rgba(0,0,0,0.50) 0%, rgba(0,0,0,0.35) 45%, rgba(0,0,0,0.20) 100%);
  z-index: 2;
}

.hero-modern-container {
  position: relative;
  z-index: 3;
  width: min(1380px, calc(100% - 40px));
  margin: 0 auto;
}

.hero-modern-inner {
  min-height: 88vh;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 40px;
  padding: 110px 0 60px;
}

.hero-left {
  max-width: 760px;
}

.hero-modern-badge {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  background: rgba(255, 184, 0, 0.14);
  border: 1px solid rgba(255, 184, 0, 0.35);
  color: #ffcc33;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 24px;
  backdrop-filter: blur(6px);
}

.hero-title {
  font-size: clamp(44px, 6vw, 82px);
  line-height: 0.98;
  font-weight: 900;
  color: #ffffff;
  margin: 0 0 14px;
  letter-spacing: -1.5px;
}

.hero-subtitle {
  font-size: clamp(24px, 2vw, 42px);
  line-height: 1.1;
  font-weight: 900;
  color: #ffbe2e;
  margin: 0 0 18px;
}

.hero-description {
  max-width: 760px;
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255,255,255,0.92);
  margin: 0 0 30px;
}

.hero-modern-buttons {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 34px;
}

.hero-modern .hero-btn {
  height: 60px;
  padding: 0 28px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-decoration: none;
  font-size: 18px;
  font-weight: 800;
  transition: all 0.25s ease;
  border: none;
}

.hero-btn-call {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(239, 68, 68, 0.28);
}

.hero-btn-call:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(239, 68, 68, 0.34);
}

.hero-btn-whatsapp {
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(34, 197, 94, 0.28);
}

.hero-btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(34, 197, 94, 0.34);
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 42px;
  flex-wrap: wrap;
}

.hero-stat-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-stat-item strong {
  font-size: 26px;
  line-height: 1;
  font-weight: 900;
  color: #ffcc33;
}

.hero-stat-item span {
  font-size: 14px;
  color: rgba(255,255,255,0.82);
  font-weight: 600;
}

.hero-right {
  display: flex;
  justify-content: flex-end;
}

.hero-info-card {
  width: min(100%, 560px);
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 30px;
  backdrop-filter: blur(14px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.16);
  padding: 28px;
}

.hero-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-bottom: 22px;
}

.hero-info-box {
  min-height: 138px;
  border-radius: 22px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 18px;
}

.hero-info-box strong {
  font-size: 46px;
  line-height: 1;
  font-weight: 900;
  color: #ffbe2e;
  margin-bottom: 10px;
}

.hero-info-box span {
  color: rgba(255,255,255,0.88);
  font-size: 18px;
  font-weight: 600;
}

.hero-location-box {
  border-radius: 22px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.10);
  padding: 18px 20px;
}

.hero-location-top {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ff9d2f;
  flex-shrink: 0;
}

.hero-location-left {
  flex: 1;
  min-width: 120px;
}

.hero-location-right {
  color: rgba(255,255,255,0.92);
}

.hero-location-bottom {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 14px;
  color: rgba(255,255,255,0.82);
  font-weight: 600;
}

/* Tablet */
@media (max-width: 1100px) {
  .hero-modern-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 110px 0 50px;
  }

  .hero-right {
    justify-content: flex-start;
  }

  .hero-info-card {
    width: 100%;
    max-width: 620px;
  }
}

/* Mobil */
@media (max-width: 768px) {
  .hero-modern {
    min-height: auto;
  }

  .hero-modern-container {
    width: calc(100% - 24px);
  }

  .hero-modern-inner {
    min-height: auto;
    padding: 110px 0 36px;
    gap: 24px;
  }

  .hero-title {
    font-size: 46px;
    line-height: 1.02;
    letter-spacing: -1px;
  }

  .hero-subtitle {
    font-size: 28px;
  }

  .hero-description {
    font-size: 16px;
    line-height: 1.65;
    margin-bottom: 24px;
  }

  .hero-modern .hero-btn {
    width: 100%;
    height: 56px;
    font-size: 17px;
  }

  .hero-modern-buttons {
    gap: 12px;
    margin-bottom: 24px;
  }

  .hero-stats {
    gap: 22px;
  }

  .hero-stat-item strong {
    font-size: 22px;
  }

  .hero-info-card {
    padding: 18px;
    border-radius: 22px;
  }

  .hero-info-grid {
    gap: 12px;
  }

  .hero-info-box {
    min-height: 108px;
    border-radius: 16px;
    padding: 12px;
  }

  .hero-info-box strong {
    font-size: 30px;
    margin-bottom: 8px;
  }

  .hero-info-box span {
    font-size: 14px;
  }

  .hero-location-box {
    border-radius: 16px;
    padding: 14px;
  }

  .hero-location-top {
    font-size: 14px;
    margin-bottom: 10px;
  }

  .hero-location-bottom {
    gap: 10px;
    font-size: 13px;
  }
}

/* Çok küçük ekran */
@media (max-width: 480px) {
  .hero-modern-inner {
    padding-top: 96px;
  }

  .hero-title {
    font-size: 38px;
  }

  .hero-subtitle {
    font-size: 24px;
  }

  .hero-modern-badge {
    min-height: 40px;
    font-size: 12px;
    padding: 0 14px;
    margin-bottom: 18px;
  }

  .hero-info-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .hero-right {
    display: none !important;
  }

  .hero-modern-inner {
    grid-template-columns: 1fr !important;
  }

  .hero-left {
    max-width: 100%;
  }
}
/* MOBİLDE SAĞ İSTATİSTİK KARTINI KALDIR */
@media (max-width: 768px) {
  .hero-modern .hero-right,
  .hero-modern .hero-info-card,
  .hero-modern .hero-info-grid,
  .hero-modern .hero-location-box {
    display: none !important;
  }

  .hero-modern .hero-modern-inner {
    grid-template-columns: 1fr !important;
    min-height: auto !important;
    padding: 95px 0 32px !important;
    gap: 0 !important;
  }

  .hero-modern .hero-left {
    max-width: 100% !important;
  }
}
/* HERO SAĞ İSTATİSTİK ALANINI HER YERDE KALDIR */
.hero-modern .hero-right {
  display: none !important;
}

.hero-modern .hero-modern-inner {
  grid-template-columns: 1fr !important;
}

.hero-modern .hero-left {
  max-width: 100% !important;
}
/* HERO TAM ORTALAMA */
.hero-modern .hero-modern-inner {
  display: flex !important;
  justify-content: center !important;   /* yatay ortala */
  align-items: center !important;       /* dikey ortala */
  text-align: center !important;
}

/* İçerik kutusu */
.hero-modern .hero-left {
  max-width: 800px;
  margin: 0 auto;
}

/* Butonları ortala */
.hero-modern .hero-buttons {
  justify-content: center !important;
}

/* Alt istatistikleri ortala */
.hero-modern .hero-stats {
  justify-content: center !important;
}
.hero-btn i {
  font-size: 18px;
}

/* =========================
   SERVICES - MODERN
========================= */

.services-modern-section {
  padding: 95px 0;
  background: #eef6ef;
}

.services-modern-head {
  max-width: 900px;
  margin: 0 auto 48px;
  text-align: center;
}

.services-modern-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 18px;
  border-radius: 999px;
  background: #f7e8dc;
  color: #ef1717;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
}

.services-modern-head h2 {
  margin: 0 0 18px;
  font-size: clamp(34px, 4vw, 60px);
  line-height: 1.08;
  font-weight: 900;
  color: #ff8a1f;
  letter-spacing: -0.03em;
}

.services-modern-head p {
  margin: 0 auto;
  max-width: 760px;
  font-size: 18px;
  line-height: 1.8;
  color: #000000;
}

.services-modern-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.service-modern-card {
  background: #ffffff;
  border: 1px solid #dceedd;
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 10px 30px rgba(19, 59, 33, 0.05);
  transition: all 0.28s ease;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.service-modern-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(19, 59, 33, 0.10);
  border-color: #c9e4cd;
}

.service-modern-top {
  margin-bottom: 22px;
}

.service-modern-icon-box {
  width: 72px;
  height: 72px;
  border-radius: 22px;
  background: #ff8a1f;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 10px 24px rgba(20, 108, 54, 0.18);
}

.service-modern-icon-box i {
  font-size: 28px;
}
.service-modern-card:hover .service-modern-icon-box i {
  transform: rotate(8deg) scale(1.1);
  transition: all 0.3s ease;
}

.service-modern-card h3 {
  margin: 0 0 18px;
  font-size: 24px;
  line-height: 1.25;
  font-weight: 800;
  color: #0f5b33;
}

.service-modern-short {
  margin: 0 0 16px;
  font-size: 17px;
  line-height: 1.75;
  color: #1f9d55;
}

.service-modern-detail {
  font-size: 16px;
  line-height: 1.8;
  color: #177245;
  margin-bottom: 18px;
}

.service-modern-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
  margin-bottom: 22px;
}

.service-modern-tags span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: #f2f8f2;
  border: 1px solid #d6ead8;
  color: #166534;
  font-size: 13px;
  font-weight: 700;
}

.service-modern-footer {
  margin-top: auto;
  padding-top: 8px;
}

.service-modern-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #ff6200;
  font-size: 16px;
  font-weight: 800;
  transition: all 0.2s ease;
}

.service-modern-link span {
  font-size: 24px;
  line-height: 1;
  transition: transform 0.2s ease;
}

.service-modern-link:hover {
  color: #e45700;
}

.service-modern-link:hover span {
  transform: translateX(4px);
}

/* Tablet */
@media (max-width: 1100px) {
  .services-modern-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Mobil */
@media (max-width: 768px) {
  .services-modern-section {
    padding: 75px 0;
  }

  .services-modern-head {
    margin-bottom: 34px;
  }

  .services-modern-head h2 {
    font-size: 25px;
  }

  .services-modern-head p {
    font-size: 16px;
    line-height: 1.7;
  }

  .services-modern-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .service-modern-card {
    padding: 22px;
    border-radius: 22px;
  }

  .service-modern-icon-box {
    width: 45px;
    height: 45px;
    font-size: 22px;
    border-radius: 18px;
  }

  .service-modern-card h3 {
    font-size: 18px;
    margin-bottom: 14px;
  }

  .service-modern-short,
  .service-modern-detail {
    font-size: 15px;
    line-height: 1.75;
  }

  .service-modern-link {
    font-size: 15px;
  }
}



/* =========================
   SERVICE PACKAGES
========================= */

.service-packages-section{
    padding:95px 0;
    background:#f7f2e4;
}

.service-packages-head{
    max-width:860px;
    margin:0 auto 42px;
    text-align:center;
}

.service-packages-badge{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:34px;
    padding:0 16px;
    border-radius:999px;
    color:#ef4444;
    font-size:13px;
    font-weight:800;
    letter-spacing:.08em;
    margin-bottom:14px;
}

.service-packages-head h2{
    margin:0 0 14px;
    font-size:clamp(34px, 4vw, 64px);
    line-height:1.08;
    font-weight:900;
    color:#0f172a;
    letter-spacing:-0.03em;
}

.service-packages-head p{
    margin:0 auto;
    max-width:760px;
    font-size:18px;
    line-height:1.75;
    color:#64748b;
}

.service-packages-grid{
    display:grid;
    grid-template-columns:repeat(7, minmax(0, 1fr));
    gap:14px;
    align-items:stretch;
}

.service-package-card{
    position:relative;
    background:#fff;
    border-radius:16px;
    padding:22px 16px 16px;
    text-align:center;
    box-shadow:0 10px 26px rgba(0,0,0,.04);
    border:1px solid rgba(15,23,42,.06);
    transition:all .25s ease;
    min-height:100%;
}

.service-package-card:hover{
    transform:translateY(-4px);
    box-shadow:0 16px 34px rgba(0,0,0,.08);
}

.service-package-card.featured{
    background:#ef2b2b;
    border-color:#ef2b2b;
}

.service-package-popular{
    position:absolute;
    top:-12px;
    left:50%;
    transform:translateX(-50%);
    background:#facc15;
    color:#111827;
    border-radius:999px;
    font-size:12px;
    font-weight:900;
    padding:6px 14px;
    white-space:nowrap;
}

.service-package-count{
    font-size:22px;
    font-weight:900;
    color:#ef2b2b;
    line-height:1;
    margin-bottom:8px;
}

.service-package-unit{
    font-size:13px;
    font-weight:800;
    color:#94a3b8;
    letter-spacing:.08em;
    margin-bottom:12px;
}

.service-package-title{
    font-size:15px;
    line-height:1.5;
    color:#64748b;
    min-height:52px;
    margin-bottom:16px;
    font-weight:600;
}

.service-package-desc{
    font-size:14px;
    line-height:1.6;
    color:#64748b;
    margin-bottom:14px;
    min-height:48px;
}

.service-package-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:40px;
    padding:0 16px;
    border-radius:8px;
    background:#22c55e;
    color:#fff;
    font-size:14px;
    font-weight:800;
    text-decoration:none;
    width:100%;
}

.service-package-card.featured .service-package-count,
.service-package-card.featured .service-package-unit,
.service-package-card.featured .service-package-title,
.service-package-card.featured .service-package-desc{
    color:#fff;
}

.service-package-card.featured .service-package-btn{
    background:#fff;
    color:#ef2b2b;
}

@media (max-width: 1300px){
    .service-packages-grid{
        grid-template-columns:repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 900px){
    .service-packages-grid{
        grid-template-columns:repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px){
    .service-packages-section{
        padding:75px 0;
    }

    .service-packages-grid{
        grid-template-columns:1fr;
    }

    .service-packages-head h2{
        font-size:36px;
    }

    .service-packages-head p{
        font-size:16px;
    }

    .service-package-card{
        padding:24px 18px 18px;
    }
}
/* =========================
   PACKAGE INFO + CTA
========================= */

.package-info-section{
    padding:90px 0 30px;
    background:#f7f2e4;
}

.package-info-wrap{
    display:grid;
    grid-template-columns:1.4fr 380px;
    gap:26px;
    align-items:stretch;
}

.package-info-left{
    background:#ffffff;
    border-radius:24px;
    padding:34px 32px;
    box-shadow:0 10px 28px rgba(0,0,0,.04);
    border:1px solid rgba(15,23,42,.05);
}

.package-info-left h2{
    margin:0 0 18px;
    font-size:clamp(30px, 3vw, 46px);
    line-height:1.15;
    font-weight:900;
    color:#0f172a;
    letter-spacing:-0.03em;
}

.package-info-left p{
    margin:0 0 16px;
    font-size:18px;
    line-height:1.85;
    color:#475569;
}

.package-info-left strong{
    color:#0f172a;
    font-weight:800;
}

.package-info-tags{
    display:grid;
    grid-template-columns:repeat(4, minmax(0, 1fr));
    gap:12px;
    margin-top:24px;
}

.package-info-tag{
    background:#fff9e8;
    border:1px solid #f4dfaa;
    border-radius:14px;
    padding:14px 12px;
    text-align:center;
}

.package-info-tag strong{
    display:block;
    font-size:15px;
    color:#0f172a;
    margin-bottom:6px;
    font-weight:800;
}

.package-info-tag span{
    display:block;
    font-size:14px;
    color:#64748b;
    font-weight:600;
}

.package-info-right{
    display:flex;
}

.package-cta-card{
    width:100%;
    background:#ef2222;
    color:#fff;
    border-radius:24px;
    padding:30px 30px 28px;
    box-shadow:0 16px 36px rgba(239,34,34,.22);
}

.package-cta-badge{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:34px;
    padding:0 14px;
    border-radius:999px;
    background:rgba(255,255,255,.14);
    font-size:12px;
    font-weight:900;
    letter-spacing:.08em;
    margin-bottom:18px;
}

.package-cta-card h3{
    margin:0 0 16px;
    font-size:34px;
    line-height:1.12;
    font-weight:900;
    letter-spacing:-0.03em;
    color:#fff;
}

.package-cta-card p{
    margin:0 0 24px;
    font-size:17px;
    line-height:1.75;
    color:rgba(255,255,255,.92);
}

.package-cta-phone,
.package-cta-whatsapp{
    width:100%;
    min-height:52px;
    border-radius:999px;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    text-decoration:none;
    font-size:18px;
    font-weight:800;
    margin-bottom:12px;
    transition:all .2s ease;
}

.package-cta-phone{
    background:#fff;
    color:#2563eb;
}

.package-cta-phone:hover{
    transform:translateY(-2px);
}

.package-cta-whatsapp{
    background:#22c55e;
    color:#fff;
    margin-bottom:0;
}

.package-cta-whatsapp:hover{
    transform:translateY(-2px);
    background:#18b454;
}

.package-cta-phone span,
.package-cta-whatsapp span{
    display:inline-flex;
    align-items:center;
    justify-content:center;
}

/* Tablet */
@media (max-width: 1100px){
    .package-info-wrap{
        grid-template-columns:1fr;
    }

    .package-info-tags{
        grid-template-columns:repeat(2, minmax(0, 1fr));
    }
}

/* Mobil */
@media (max-width: 640px){
    .package-info-section{
        padding:70px 0 20px;
    }

    .package-info-left{
        padding:24px 20px;
        border-radius:18px;
    }

    .package-info-left h2{
        font-size:28px;
    }

    .package-info-left p{
        font-size:16px;
        line-height:1.75;
    }

    .package-info-tags{
        grid-template-columns:1fr 1fr;
        gap:10px;
    }

    .package-info-tag{
        padding:12px 10px;
    }

    .package-info-tag strong{
        font-size:14px;
    }

    .package-info-tag span{
        font-size:12px;
    }

    .package-cta-card{
        padding:24px 20px;
        border-radius:18px;
    }

    .package-cta-card h3{
        font-size:26px;
    }

    .package-cta-card p{
        font-size:15px;
    }

    .package-cta-phone,
    .package-cta-whatsapp{
        font-size:16px;
        min-height:48px;
    }
}

/* =========================
   MARQUEE (KAYAN YAZI)
========================= */

.marquee-section{
    background:#e11d1d;
    color:#fff;
    padding:14px 0 12px;
    overflow:hidden;
}

.marquee-title{
    text-align:center;
    font-size:13px;
    font-weight:800;
    letter-spacing:.08em;
    margin-bottom:8px;
    opacity:.9;
}

.marquee{
    width:100%;
    overflow:hidden;
    position:relative;
}

.marquee-track{
    display:flex;
    gap:40px;
    white-space:nowrap;
    animation:marqueeMove 25s linear infinite;
}

.marquee-track span{
    font-size:15px;
    font-weight:600;
    position:relative;
}

.marquee-track span::after{
    content:"•";
    margin-left:18px;
    color:#facc15;
}

/* animasyon */
@keyframes marqueeMove{
    0%{
        transform:translateX(0);
    }
    100%{
        transform:translateX(-50%);
    }
}

/* hover durdur */
.marquee:hover .marquee-track{
    animation-play-state:paused;
}

/* mobil */
@media (max-width:640px){
    .marquee-track{
        gap:24px;
        animation-duration:18s;
    }

    .marquee-track span{
        font-size:13px;
    }
}
.marquee-track a,
.marquee-track span{
    font-size:15px;
    font-weight:600;
    position:relative;
    color:#fff;
    text-decoration:none;
}

.marquee-track a:hover{
    color:#facc15;
}
/* =========================
   WHY US - MODERN
========================= */

.whyus-modern-section{
    padding:95px 0;
    background:#fafafa;
}

.whyus-modern-head{
    text-align:center;
    max-width:860px;
    margin:0 auto 42px;
}

.whyus-modern-badge{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:38px;
    padding:0 18px;
    border-radius:999px;
    background:#eef5ef;
    color:#166534;
    font-size:13px;
    font-weight:800;
    margin-bottom:18px;
}

.whyus-modern-head h2{
    margin:0 0 16px;
    font-size:clamp(34px, 4vw, 64px);
    line-height:1.08;
    font-weight:900;
    color:#0f172a;
    letter-spacing:-0.03em;
}

.whyus-modern-head p{
    margin:0 auto;
    max-width:760px;
    font-size:18px;
    line-height:1.75;
    color:#64748b;
}

.whyus-modern-grid{
    display:grid;
    grid-template-columns:repeat(3, minmax(0, 1fr));
    gap:30px;
    margin-bottom:42px;
}

.whyus-modern-card{
    background:#fff;
    border:1px solid #ececec;
    border-radius:22px;
    padding:32px;
    min-height:100%;
    transition:all .25s ease;
}

.whyus-modern-card:hover{
    transform:translateY(-6px);
    box-shadow:0 18px 36px rgba(0,0,0,.06);
    border-color:#e3e3e3;
}

.whyus-modern-iconbox{
    width:56px;
    height:56px;
    border-radius:14px;
    background:#fbe2e2;
    color:#ef2b2b;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    margin-bottom:22px;
}

.whyus-modern-card h3{
    margin:0 0 14px;
    font-size:22px;
    line-height:1.3;
    font-weight:800;
    color:#0f172a;
}

.whyus-modern-card p{
    margin:0;
    font-size:17px;
    line-height:1.8;
    color:#64748b;
}

.whyus-modern-cta{
    background:linear-gradient(90deg, #ef2b2b 0%, #b90f16 100%);
    border-radius:26px;
    padding:34px 40px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:24px;
    box-shadow:0 18px 40px rgba(239,43,43,.16);
}

.whyus-modern-cta-text span{
    display:inline-block;
    color:#fde68a;
    font-size:13px;
    font-weight:900;
    letter-spacing:.08em;
    margin-bottom:10px;
}

.whyus-modern-cta-text h3{
    margin:0 0 10px;
    font-size:26px;
    line-height:1.2;
    font-weight:900;
    color:#fff;
}

.whyus-modern-cta-text p{
    margin:0;
    color:rgba(255,255,255,.92);
    font-size:18px;
    line-height:1.7;
}

.whyus-modern-cta-actions{
    display:flex;
    align-items:center;
    gap:14px;
    flex-shrink:0;
}

.whyus-cta-phone,
.whyus-cta-whatsapp{
    min-height:54px;
    padding:0 24px;
    border-radius:999px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    text-decoration:none;
    font-size:18px;
    font-weight:800;
    transition:all .2s ease;
}

.whyus-cta-phone{
    background:#fff;
    color:#ef2b2b;
}

.whyus-cta-whatsapp{
    background:#22c55e;
    color:#fff;
}

.whyus-cta-phone:hover,
.whyus-cta-whatsapp:hover{
    transform:translateY(-2px);
}

/* Tablet */
@media (max-width: 1100px){
    .whyus-modern-grid{
        grid-template-columns:repeat(2, minmax(0, 1fr));
    }

    .whyus-modern-cta{
        flex-direction:column;
        align-items:flex-start;
    }

    .whyus-modern-cta-actions{
        width:100%;
        flex-wrap:wrap;
    }
}

/* Mobil */
@media (max-width: 680px){
    .whyus-modern-section{
        padding:75px 0;
    }

    .whyus-modern-grid{
        grid-template-columns:1fr;
        gap:18px;
    }

    .whyus-modern-card{
        padding:24px;
        border-radius:18px;
    }

    .whyus-modern-card h3{
        font-size:20px;
    }

    .whyus-modern-card p{
        font-size:15px;
    }

    .whyus-modern-head h2{
        font-size:36px;
    }

    .whyus-modern-head p{
        font-size:16px;
    }

    .whyus-modern-cta{
        padding:24px 20px;
        border-radius:20px;
    }

    .whyus-modern-cta-text h3{
        font-size:24px;
    }

    .whyus-modern-cta-text p{
        font-size:15px;
    }

    .whyus-modern-cta-actions{
        flex-direction:column;
        width:100%;
    }

    .whyus-cta-phone,
    .whyus-cta-whatsapp{
        width:100%;
        font-size:16px;
    }
}
/* =========================
   SPECIAL SERVICES - CARD STYLE
========================= */

.special-services-modern-section{
    padding:95px 0;
    background:#f8f2e4;
}

.special-services-modern-head{
    text-align:center;
    max-width:860px;
    margin:0 auto 38px;
}

.special-services-modern-badge{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:34px;
    padding:0 16px;
    border-radius:999px;
    color:#ef4444;
    font-size:13px;
    font-weight:800;
    letter-spacing:.08em;
    margin-bottom:14px;
}

.special-services-modern-head h2{
    margin:0 0 14px;
    font-size:clamp(34px, 4vw, 58px);
    line-height:1.08;
    font-weight:900;
    color:#0f172a;
    letter-spacing:-0.03em;
}

.special-services-modern-head p{
    margin:0 auto;
    max-width:760px;
    font-size:18px;
    line-height:1.75;
    color:#64748b;
}

.special-services-modern-grid{
    display:grid;
    grid-template-columns:repeat(3, minmax(0, 1fr));
    gap:22px;
}

.special-services-modern-card{
    background:#fff;
    border:1px solid rgba(15,23,42,.08);
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 10px 28px rgba(0,0,0,.04);
    transition:all .25s ease;
}

.special-services-modern-card:hover{
    transform:translateY(-6px);
    box-shadow:0 18px 36px rgba(0,0,0,.08);
}

.special-services-modern-image-wrap{
    position:relative;
    aspect-ratio: 16 / 9;
    overflow:hidden;
    background:#e5e7eb;
}

.special-services-modern-image{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:transform .3s ease;
}

.special-services-modern-card:hover .special-services-modern-image{
    transform:scale(1.04);
}

.special-services-modern-noimage{
    width:100%;
    height:100%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:700;
    color:#64748b;
    background:#e5e7eb;
}

.special-services-modern-tag{
    position:absolute;
    top:14px;
    left:14px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:32px;
    padding:0 14px;
    border-radius:999px;
    background:#ef4444;
    color:#fff;
    font-size:12px;
    font-weight:800;
    box-shadow:0 6px 18px rgba(239,68,68,.22);
}

.special-services-modern-content{
    padding:18px 18px 18px;
}

.special-services-modern-content h3{
    margin:0 0 12px;
    font-size:22px;
    line-height:1.25;
    font-weight:800;
    color:#0f172a;
    display:flex;
    align-items:center;
    gap:10px;
}
/*
.special-services-modern-content h3::before{
    content:"";
    width:36px;
    height:36px;
    border-radius:10px;
    background:#fff7ed;
    border:1px solid #fed7aa;
    flex-shrink:0;
}
*/

.special-services-modern-content p{
    margin:0 0 18px;
    color:#64748b;
    font-size:17px;
    line-height:1.75;
    min-height:70px;
}

.special-services-modern-btn{
    width:100%;
    min-height:46px;
    border-radius:10px;
    background:#22c55e;
    color:#fff;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    text-decoration:none;
    font-size:17px;
    font-weight:800;
    transition:all .2s ease;
}

.special-services-modern-btn:hover{
    background:#16a34a;
    transform:translateY(-1px);
}

.special-services-modern-cta{
    margin-top:34px;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:16px;
    flex-wrap:wrap;
}

.special-services-modern-phone,
.special-services-modern-whatsapp{
    min-height:54px;
    padding:0 28px;
    border-radius:999px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    text-decoration:none;
    font-size:19px;
    font-weight:800;
    transition:all .2s ease;
}

.special-services-modern-phone{
    background:#ef2b2b;
    color:#fff;
}

.special-services-modern-whatsapp{
    background:#22c55e;
    color:#fff;
}

.special-services-modern-phone:hover,
.special-services-modern-whatsapp:hover{
    transform:translateY(-2px);
}

/* Tablet */
@media (max-width: 1100px){
    .special-services-modern-grid{
        grid-template-columns:repeat(2, minmax(0, 1fr));
    }
}

/* Mobil */
@media (max-width: 680px){
    .special-services-modern-section{
        padding:75px 0;
    }

    .special-services-modern-grid{
        grid-template-columns:1fr;
        gap:18px;
    }

    .special-services-modern-head h2{
        font-size:36px;
    }

    .special-services-modern-head p{
        font-size:16px;
    }

    .special-services-modern-content{
        padding:16px;
    }

    .special-services-modern-content h3{
        font-size:20px;
    }

    .special-services-modern-content p{
        font-size:15px;
        min-height:auto;
    }

    .special-services-modern-phone,
    .special-services-modern-whatsapp{
        width:100%;
        font-size:16px;
    }
}
/* =========================
   FAQ - MODERN
========================= */

.faq-modern-section{
    padding:75px 0;
    background:#fafafa;
}

.faq-modern-head{
    text-align:center;
    max-width:760px;
    margin:0 auto 30px;
}

.faq-modern-badge{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:30px;
    padding:0 14px;
    border-radius:999px;
    color:#ef4444;
    font-size:12px;
    font-weight:800;
    letter-spacing:.08em;
    margin-bottom:10px;
}

.faq-modern-head h2{
    margin:0 0 12px;
    font-size:clamp(28px, 3vw, 48px);
    line-height:1.08;
    font-weight:900;
    color:#0f172a;
    letter-spacing:-0.03em;
}

.faq-modern-head p{
    margin:0 auto;
    max-width:680px;
    font-size:16px;
    line-height:1.7;
    color:#64748b;
}

.faq-modern-list{
    max-width:980px;
    margin:0 auto;
    display:grid;
    gap:12px;
}

.faq-modern-item{
    background:#fff;
    border:1px solid #ececec;
    border-radius:18px;
    overflow:hidden;
    transition:all .25s ease;
    box-shadow:0 8px 24px rgba(0,0,0,.03);
}

.faq-modern-item.active{
    border-color:#f3dfab;
    box-shadow:0 14px 32px rgba(0,0,0,.05);
}

.faq-modern-question{
    width:100%;
    background:none;
    border:none;
    padding:20px 22px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:16px;
    text-align:left;
    cursor:pointer;
    color:#0f172a;
}

.faq-modern-question span:first-child{
    font-size:clamp(17px, 1.6vw, 24px);
    line-height:1.45;
    font-weight:800;
}

.faq-modern-toggle{
    width:28px;
    height:28px;
    min-width:28px;
    border-radius:50%;
    background:#f4e4b3;
    color:#b7791f;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    font-size:14px;
    transition:transform .25s ease;
}

.faq-modern-item.active .faq-modern-toggle{
    transform:rotate(180deg);
}

.faq-modern-answer{
    max-height:0;
    overflow:hidden;
    transition:max-height .3s ease;
}

.faq-modern-item.active .faq-modern-answer{
    max-height:400px;
}

.faq-modern-answer-inner{
    padding:0 22px 20px;
    color:#64748b;
    font-size:15px;
    line-height:1.8;
}

/* Tablet */
@media (max-width: 991px){
    .faq-modern-question{
        padding:22px 22px;
    }

    .faq-modern-answer-inner{
        padding:0 22px 22px;
    }
}

/* Mobil */
@media (max-width: 640px){
    .faq-modern-section{
        padding:60px 0;
    }

    .faq-modern-head h2{
        font-size:34px;
    }

    .faq-modern-head p{
        font-size:15px;
    }

    .faq-modern-question{
        padding:16px 16px;
    }

    .faq-modern-question span:first-child{
        font-size:16px;
        line-height:1.5;
    }

    .faq-modern-answer-inner{
        padding:0 16px 16px;
        font-size:14px;
        line-height:1.75;
    }

    .faq-modern-toggle{
        width:26px;
        height:26px;
        min-width:26px;
        font-size:13px;
    }
}
/* =========================
   FAQ FINAL FIX (MOBİL + DESKTOP)
========================= */

.faq-modern-section{
    padding:60px 0 !important;
}

.faq-modern-head{
    max-width:600px !important;
    margin:0 auto 20px !important;
    text-align:center;
}

.faq-modern-head h2{
    font-size:32px !important;
    line-height:1.2 !important;
    margin-bottom:10px !important;
}

.faq-modern-head p{
    font-size:14px !important;
    line-height:1.6 !important;
    max-width:500px !important;
}

.faq-modern-list{
    max-width:700px !important;
    gap:10px !important;
}

.faq-modern-item{
    border-radius:14px !important;
}

.faq-modern-question{
    padding:14px 16px !important;
}

.faq-modern-question span:first-child{
    font-size:15px !important;
    line-height:1.4 !important;
    font-weight:700 !important;
}

.faq-modern-answer-inner{
    padding:0 16px 14px !important;
    font-size:13px !important;
}

.faq-modern-toggle{
    width:26px !important;
    height:26px !important;
    font-size:12px !important;
}

/* =========================
   MOBİL ÖZEL
========================= */

@media (max-width: 768px){

    .faq-modern-section{
        padding:50px 0 !important;
    }

    .faq-modern-head h2{
        font-size:26px !important;
    }

    .faq-modern-head p{
        font-size:13px !important;
    }

    .faq-modern-list{
        max-width:100% !important;
        padding:0 10px !important;
    }

    .faq-modern-question{
        padding:12px 14px !important;
    }

    .faq-modern-question span:first-child{
        font-size:14px !important;
    }

    .faq-modern-answer-inner{
        font-size:12.5px !important;
    }

    .faq-modern-toggle{
        width:24px !important;
        height:24px !important;
        font-size:11px !important;
    }
}
/* FAQ ALT CTA */

.faq-cta{
    text-align:center;
    margin-top:25px;
    padding:0 15px;
}

.faq-cta p{
    font-size:14px;
    color:#6b7280;
    margin-bottom:15px;
}

.faq-btn{
    display:block;
    width:100%;
    max-width:320px;
    margin:10px auto;
    padding:12px 16px;
    border-radius:999px;
    font-size:14px;
    font-weight:700;
    text-decoration:none;
    text-align:center;
    transition:all .2s ease;
}

/* telefon */
.faq-btn-call{
    background:#ef4444;
    color:#fff;
}

.faq-btn-call:hover{
    background:#dc2626;
}

/* whatsapp */
.faq-btn-wa{
    background:#22c55e;
    color:#fff;
}

.faq-btn-wa:hover{
    background:#16a34a;
}