/* ── ELITE PREMIUM VISUAL SYSTEM (FIXED & STABLE) ────────── */
:root {
  --nh-gold:       #c9a961;
  --nh-gold-dark:  #a8883e;
  --nh-dark:       #111318;
  --nh-dark2:      #1c2028;
  --nh-text:       #1a1a2e;
  --nh-muted:      #6b7280;
  --nh-border:     #e5e7eb;
  --nh-white:      #ffffff;
  --nh-gray:       #f4f5f7;
  --nh-radius:     20px;
  --nh-ease:       cubic-bezier(.4,0,.2,1);
  --nh-shadow:     0 12px 40px rgba(0,0,0,.06);
}

/* ── HERO & CAPSULES ── */
.nh-hero { 
    position: relative; 
    height: 60vh; 
    min-height: 500px; 
    max-height: 650px; 
    overflow: hidden; 
    background: #000;
    will-change: opacity;
    border-radius: 0 0 40px 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.nh-hero__slides { 
    position: absolute; 
    inset: 0; 
    border-radius: 0 0 40px 40px;
}

.nh-hero__slide { 
    position: absolute; 
    inset: 0; 
    background-size: cover; 
    background-position: center center; 
    background-repeat: no-repeat;
    opacity: 0; 
    visibility: hidden;
    transition: opacity 1s ease, visibility 0s 1s;
    will-change: opacity;
    border-radius: 0 0 40px 40px;
}

.nh-hero__slide--active { 
    opacity: 1; 
    visibility: visible;
    transition: opacity 1s ease, visibility 0s 0s;
}

.nh-hero__overlay { 
    position: absolute; 
    inset: 0; 
    background: linear-gradient(to top, rgba(10,12,18,0.9) 0%, rgba(10,12,18,0.2) 60%, transparent 100%); 
    z-index: 2;
    border-radius: 0 0 40px 40px;
}

.nh-hero__caption { 
    position: absolute; 
    top: 40%; 
    left: 8%; 
    transform: translateY(-50%); 
    z-index: 10; 
    color: #fff; 
    width: 80%;
}

.nh-hero__eyebrow { font-size: 13px; font-weight: 700; color: var(--nh-gold); text-transform: uppercase; letter-spacing: 4px; display: block; margin-bottom: 25px; }
.nh-hero__title { font-family: 'Playfair Display', serif; font-size: clamp(38px, 6vw, 72px); font-weight: 700; line-height: 1.1; margin: 0; }

/* STATS CAPSULES - Centered and Slider Aligned */
.nh-hero__stats-container { 
    position: absolute; 
    bottom: 25px; 
    left: 50%; 
    transform: translateX(-50%);
    z-index: 20; 
    width: auto;
    max-width: 90%;
}

.nh-hero__stats { 
    display: flex; 
    gap: 24px; 
    justify-content: center;
    flex-wrap: wrap;
}

.nh-hero__stat { 
    background: rgba(255,255,255,0.1); 
    backdrop-filter: blur(20px); 
    -webkit-backdrop-filter: blur(20px); 
    border: 1px solid rgba(255,255,255,0.2);
    padding: 20px 36px; 
    border-radius: 100px; 
    display: flex; 
    align-items: center; 
    gap: 14px; 
    transition: all 0.3s var(--nh-ease);
    white-space: nowrap;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    will-change: transform;
}

.nh-hero__stat:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-8px);
    border-color: rgba(201, 169, 97, 0.6);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.nh-hero__stat strong { 
    font-size: 28px; 
    color: #fff; 
    font-weight: 800; 
    letter-spacing: -0.5px;
}

.nh-hero__stat span { 
    font-size: 12px; 
    color: rgba(255,255,255,0.85); 
    text-transform: uppercase; 
    letter-spacing: 1.2px; 
    font-weight: 600; 
    line-height: 1.4;
}

.nh-hero__stat--highlight { 
    background: linear-gradient(135deg, var(--nh-gold) 0%, var(--nh-gold-dark) 100%);
    border-color: var(--nh-gold); 
    box-shadow: 0 8px 32px rgba(201, 169, 97, 0.3);
}

.nh-hero__stat--highlight:hover {
    background: linear-gradient(135deg, var(--nh-gold-dark) 0%, var(--nh-gold) 100%);
    border-color: var(--nh-gold-dark);
    box-shadow: 0 12px 40px rgba(201, 169, 97, 0.4);
}

.nh-hero__stat--highlight strong {
    color: var(--nh-dark);
}

.nh-hero__stat--highlight span {
    color: rgba(17, 19, 24, 0.8);
}

/* DOTS NAVIGATION */
.nh-hero__dots {
    position: absolute;
    bottom: 10px;
    right: 50%;
    transform: translateX(50%);
    z-index: 20;
    display: flex;
    gap: 10px;
}

.nh-hero__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.nh-hero__dot:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.2);
}

.nh-hero__dot--active {
    background: var(--nh-gold);
    width: 28px;
    border-radius: 5px;
}
    border-color: var(--nh-gold);
    width: 32px;
    border-radius: 6px;
}

/* ── STACKED GLASS CARDS (User Preference: Text Below Image) ── */
.nh-glass-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 35px; }
.nh-glass-card { 
    background: #fff; border-radius: var(--nh-radius); overflow: hidden; box-shadow: var(--nh-shadow); 
    display: flex; flex-direction: column; transition: 0.4s var(--nh-ease); border: 1px solid var(--nh-border); height: 100%;
}
.nh-glass-card:hover { transform: translateY(-15px); box-shadow: 0 25px 60px rgba(0,0,0,0.1); border-color: var(--nh-gold); }
.nh-glass-card__img { height: 280px; overflow: hidden; position: relative; }
.nh-glass-card__img img { width: 100%; height: 100%; object-fit: cover; transition: 0.8s var(--nh-ease); }
.nh-glass-card:hover .nh-glass-card__img img { transform: scale(1.1); }
.nh-glass-card__body { padding: 35px; display: flex; flex-direction: column; flex: 1; text-align: left; }
.nh-glass-card__title { font-family: 'Playfair Display', serif; font-size: 24px; font-weight: 700; color: var(--nh-dark); margin-bottom: 12px; }
.nh-glass-card__desc { font-size: 15px; color: var(--nh-muted); line-height: 1.7; margin-bottom: 25px; }

/* THEMED STACKED CARDS */
.nh-section--dark .nh-glass-card { background: var(--nh-dark2); border-color: rgba(255,255,255,0.05); }
.nh-section--dark .nh-glass-card__title { color: #fff; }
.nh-section--dark .nh-glass-card__desc { color: rgba(255,255,255,0.5); }

/* Premium Frosted Glass for Gold Section */
.nh-section--gold .nh-glass-card { 
    background: rgba(255, 255, 255, 0.4); 
    backdrop-filter: blur(25px); 
    -webkit-backdrop-filter: blur(25px); 
    border: 1px solid rgba(255, 255, 255, 0.6); 
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08); 
}
.nh-section--gold .nh-glass-card:hover { 
    background: rgba(255, 255, 255, 0.65); 
    border-color: #fff; 
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15); 
    transform: translateY(-12px);
}
.nh-section--gold .nh-glass-card__title { color: var(--nh-dark); }
.nh-section--gold .nh-btn--white-sm { background: #fff; color: var(--nh-dark); border: none; font-weight: 700; box-shadow: 0 10px 30px rgba(255, 255, 255, 0.5); }
.nh-section--gold .nh-btn--white-sm:hover { background: var(--nh-dark); color: #fff; }


/* ── SECTIONS ── */
/* ── BUTTONS ── */
.nh-btn { display: inline-flex; align-items: center; justify-content: center; padding: 16px 36px; font-size: 14px; font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px; border-radius: 50px; text-decoration: none; transition: all 0.4s var(--nh-ease); position: relative; overflow: hidden; cursor: pointer; border: none; font-family: 'Inter', sans-serif; }
.nh-btn--gold { background: var(--nh-gold); color: #fff; box-shadow: 0 10px 30px rgba(201, 169, 97, 0.3); }
.nh-btn--gold:hover { background: var(--nh-gold-dark); transform: translateY(-3px); box-shadow: 0 15px 40px rgba(201, 169, 97, 0.4); }
.nh-btn--white-sm { background: #fff; color: var(--nh-dark); padding: 12px 28px; font-size: 13px; box-shadow: 0 5px 20px rgba(0,0,0,0.06); border: 1px solid #eaeaea; }
.nh-btn--white-sm:hover { background: var(--nh-dark); color: #fff; border-color: var(--nh-dark); transform: translateY(-3px); box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.nh-section--dark .nh-btn--white-sm { background: rgba(255,255,255,0.1); color: #fff; border-color: rgba(255,255,255,0.2); backdrop-filter: blur(10px); }
.nh-section--dark .nh-btn--white-sm:hover { background: #fff; color: var(--nh-dark); }

.nh-section { padding: 140px 0; position: relative; }
.nh-section--white { background: #fff; }
.nh-section--dark { background: var(--nh-dark); }
.nh-section--gold { background: linear-gradient(135deg, #c9a961 0%, #a8883e 100%); }
.nh-section__head { text-align: center; margin-bottom: 80px; }
.nh-eyebrow { font-size: 12px; font-weight: 700; color: var(--nh-gold); text-transform: uppercase; letter-spacing: 3px; display: block; margin-bottom: 15px; }
.nh-section__title { font-family: 'Playfair Display', serif; font-size: 42px; font-weight: 700; color: inherit; }

/* ── WAVY WHITE TESTIMONIALS ── */
.nh-marquee-container { background: #fff; padding: 100px 0; overflow: hidden; position: relative; }
.nh-marquee { display: flex; gap: 40px; width: max-content; animation: marqueeScroll 80s linear infinite; }
.nh-marquee-item { background: #fff; border: 1px solid var(--nh-border); padding: 35px 30px; border-radius: var(--nh-radius); width: 330px; box-shadow: 0 10px 30px rgba(0,0,0,0.03); }
.nh-marquee-item p { font-size: 14px; color: var(--nh-text); font-style: italic; line-height: 1.7; margin-bottom: 20px; position: relative; }
.nh-marquee-item p::before { content: "\201C"; font-size: 50px; position: absolute; top: -15px; left: -10px; opacity: 0.1; color: var(--nh-gold); }
.nh-marquee-item h4 { font-size: 13px; font-weight: 700; color: var(--nh-gold); text-transform: uppercase; letter-spacing: 1px; }

.nh-wave-top { position: absolute; top: 0; left: 0; width: 100%; overflow: hidden; line-height: 0; transform: translateY(-99%); }
.nh-wave-top svg { position: relative; display: block; width: calc(100% + 1.3px); height: 100px; }

/* ── RESPONSIVE ── */
@media(max-width: 900px) {
    .nh-hero { height: 70vh; min-height: 500px; }
    .nh-hero__caption { left: 5%; width: 90%; top: 35%; transform: translateY(-50%); }
    .nh-hero__eyebrow { font-size: 11px; letter-spacing: 2px; margin-bottom: 15px; }
    .nh-hero__title { font-size: 32px; line-height: 1.2; }
    .nh-hero__stats-container { bottom: 20px; padding: 0 15px; }
    .nh-hero__stats { flex-wrap: wrap; gap: 8px; justify-content: center; }
    .nh-hero__stat { padding: 10px 18px; width: calc(50% - 5px); gap: 8px; border-radius: 12px; min-width: 0; }
    .nh-hero__stat strong { font-size: 18px; }
    .nh-hero__stat span { font-size: 9px; white-space: nowrap; }
    .nh-hero__stat:last-child { width: 100%; }
    .nh-hero__dots { bottom: 10px; }

    .nh-glass-grid { grid-template-columns: 1fr; gap: 25px; }
    .nh-glass-card__img { height: 220px; }
    .nh-section { padding: 60px 0; }
    .nh-section__head { margin-bottom: 40px; }
    .nh-section__title { font-size: 28px; }
}

/* ── MODERN LUXURY SERVICES (Bento Grid) ── */

/* Services section — daha kompakt padding */
.nh-section--services { padding: 80px 0; }

/* Yazılar resmin üstüne — altta overlay şeridi */
.nh-section--services .nh-service-card--modern { border: none; overflow: hidden; }
.nh-section--services .nh-card-img { display: none; }
.nh-section--services .nh-card-body {
    display: block;
    position: relative;
    padding: 30px;
    background: #fff;
    border: 1px solid var(--nh-border);
    border-radius: var(--nh-radius);
    z-index: 5;
}
.nh-section--services .nh-card-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--nh-dark);
    margin-bottom: 12px;
    letter-spacing: 0.4px;
    font-family: 'Playfair Display', serif;
}
.nh-section--services .nh-card-desc { 
    display: block;
    font-size: 14px;
    color: var(--nh-muted);
    line-height: 1.7;
}

/* 2-kolon intro: sol metin | sağ görsel */
.nh-services-intro {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 50px;
}
.nh-services-intro__text {
    flex: 1;
}
.nh-services-intro__desc {
    margin-top: 18px;
    color: var(--nh-muted);
    font-size: 15px;
    line-height: 1.75;
    max-width: 480px;
}
.nh-services-intro__img {
    width: 380px;
    flex-shrink: 0;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
    aspect-ratio: 4/3;
}
.nh-services-intro__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.8s var(--nh-ease);
}
.nh-services-intro__img:hover img { transform: scale(1.06); }
.nh-services-intro__badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--nh-gold);
    color: #fff;
    border-radius: 12px;
    padding: 12px 20px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    box-shadow: 0 8px 25px rgba(201,169,97,0.4);
}
.nh-services-intro__badge strong { font-size: 26px; font-weight: 800; line-height: 1; }
.nh-services-intro__badge span { font-size: 11px; text-transform: uppercase; letter-spacing: 1px; opacity: 0.9; }

.nh-services-modern {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 240px;
    gap: 24px;
    margin-top: 0;
}

.nh-service-card--modern {
    position: relative;
    background: #fff;
    border-radius: var(--nh-radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    border: 1px solid #f1f5f9;
    transition: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Specific Bento Sizes */
.nh-service-card--modern:nth-child(1) { grid-row: span 2; } /* Large First */
.nh-service-card--modern:nth-child(4) { grid-column: span 2; } /* Wide Halfway */

.nh-service-card--modern .nh-card-num {
    position: absolute;
    top: -20px;
    right: -10px;
    font-family: 'Playfair Display', serif;
    font-size: 140px;
    font-weight: 900;
    color: rgba(201, 169, 97, 0.05);
    z-index: 1;
    pointer-events: none;
    transition: 0.6s;
}

.nh-service-card--modern:hover .nh-card-num {
    color: rgba(201, 169, 97, 0.1);
    transform: translateY(20px);
}

.nh-card-img {
    position: relative;
    flex: 1;
    width: 100%;
    overflow: hidden;
}

.nh-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 1s var(--nh-ease);
}

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

.nh-card-body {
    padding: 35px;
    z-index: 2;
    background: #fff;
    border-top: 5px solid transparent;
    transition: 0.4s;
}

.nh-service-card--modern:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
    border-color: var(--nh-gold);
}

.nh-service-card--modern:hover .nh-card-body {
    border-top-color: var(--nh-gold);
}

.nh-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--nh-dark);
}

.nh-card-desc {
    font-size: 14px;
    color: var(--nh-muted);
    line-height: 1.6;
}

/* Responsive Bento */
@media (max-width: 1024px) {
    .nh-services-modern { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 220px; }
    .nh-services-intro { gap: 30px; }
    .nh-services-intro__img { width: 280px; }
}
@media (max-width: 768px) {
    .nh-section--services { padding: 60px 0; }
    .nh-section--services .nh-section__head { margin-bottom: 30px; text-align: center; }
    .nh-services-modern { grid-template-columns: 1fr; display: flex; flex-direction: column; gap: 20px; }
    .nh-service-card--modern { height: 240px !important; width: 100%; }
    .nh-service-card--modern:nth-child(n) { grid-row: auto; grid-column: auto; }
    .nh-card-img { height: 100%; position: absolute; inset: 0; }
    .nh-card-img img { width: 100%; height: 100%; object-fit: cover; }
    .nh-card-body { padding: 12px 18px; }
    .nh-card-title { font-size: 13px; }
    .nh-services-intro { flex-direction: column; gap: 30px; }
    .nh-services-intro__img { width: 100%; }
    .nh-services-intro__text { text-align: center; }
    .nh-services-intro__desc { max-width: 100%; }
}

@keyframes marqueeScroll { 0% { transform: translateX(0); } 100% { transform: translateX(calc(-50% - 20px)); } }

/* ── ARCHITECTURAL ASYMMETRICAL BENTO GRID (7 items optimized) ── */
.nh-arch-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 220px; gap: 20px; }
.nh-arch-card { position: relative; border-radius: 16px; overflow: hidden; text-decoration: none; display: block; box-shadow: 0 10px 40px rgba(0,0,0,0.08); transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease; background: #fff; will-change: transform; }
.nh-arch-card:hover { transform: translateY(-8px) translateZ(0); box-shadow: 0 20px 50px rgba(201,169,97,0.15); }
.nh-arch-card__img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--nh-ease); display: block; will-change: transform; }
.nh-arch-card:hover .nh-arch-card__img { transform: scale(1.06) translateZ(0); }
.nh-arch-card__body { position: absolute; bottom: 0; left: 0; right: 0; padding: 25px 25px; background: linear-gradient(to top, rgba(17,19,24,0.95) 0%, rgba(17,19,24,0.4) 60%, transparent 100%); display: flex; flex-direction: column; z-index: 2; transition: all 0.4s ease; }
.nh-arch-card:hover .nh-arch-card__body { padding-bottom: 30px; background: linear-gradient(to top, rgba(17,19,24,0.98) 0%, rgba(17,19,24,0.6) 80%, transparent 100%); }
.nh-arch-card__title { font-size: 18px; font-weight: 700; font-family: 'Playfair Display', serif; color: #fff; margin-bottom: 6px; letter-spacing: 0.5px; }
.nh-arch-card__link { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--nh-gold); display: inline-flex; align-items: center; gap: 6px; transition: gap 0.3s; }
.nh-arch-card:hover .nh-arch-card__link { gap: 12px; color: #fff; }

/* Asymmetrical Bento Layout for 7 items */
.nh-arch-card:nth-child(1) { grid-column: span 2; grid-row: span 2; } /* Mermer - BÜYÜK 2x2 */
.nh-arch-card:nth-child(2) { grid-column: span 1; grid-row: span 1; } /* Belenco */
.nh-arch-card:nth-child(3) { grid-column: span 1; grid-row: span 1; } /* Cimstone */
.nh-arch-card:nth-child(4) { grid-column: span 1; grid-row: span 1; } /* Granit */
.nh-arch-card:nth-child(5) { grid-column: span 1; grid-row: span 1; } /* Silestone */
.nh-arch-card:nth-child(6) { grid-column: span 1; grid-row: span 1; } /* Banyo */
.nh-arch-card:nth-child(7) { grid-column: span 3; grid-row: span 1; } /* Mermerit - GENİŞ 3x1 */

@media (max-width: 1024px) {
    .nh-arch-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 220px; gap: 16px; }
    .nh-arch-card:nth-child(1) { grid-column: span 2; grid-row: span 2; }
    .nh-arch-card:nth-child(2), 
    .nh-arch-card:nth-child(3), 
    .nh-arch-card:nth-child(4), 
    .nh-arch-card:nth-child(5), 
    .nh-arch-card:nth-child(6) { grid-column: span 1; grid-row: span 1; }
    .nh-arch-card:nth-child(7) { grid-column: span 2; grid-row: span 1; }
}
@media (max-width: 600px) {
    .nh-arch-grid { display: flex; flex-direction: column; }
    .nh-arch-card { height: 280px; }
    .nh-arch-card:nth-child(n) { grid-column: auto; grid-row: auto; }
}/* ── ULTRA-MODERN PILL CTA ── */
.nh-pill-cta { position: relative; padding: 80px 0; background: #f4f5f7; overflow: hidden; }
.nh-pill-cta__wrapper { display: flex; align-items: center; justify-content: space-between; max-width: 950px; margin: 0 auto; background: #ffffff; border-radius: 100px; padding: 15px 15px 15px 45px; box-shadow: 0 15px 40px rgba(0,0,0,0.05); border: 1px solid rgba(0,0,0,0.02); transition: 0.4s var(--nh-ease); }
.nh-pill-cta__wrapper:hover { transform: translateY(-3px); box-shadow: 0 20px 50px rgba(0,0,0,0.08); }
.nh-pill-cta__content { display: flex; align-items: center; gap: 20px; flex: 1; }
.nh-pill-cta__icon { width: 50px; height: 50px; border-radius: 50%; background: rgba(201, 169, 97, 0.1); color: var(--nh-gold); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.nh-pill-cta__text { display: flex; flex-direction: column; gap: 4px; }
.nh-pill-cta__title { font-family: 'Inter', sans-serif; font-size: 19px; font-weight: 700; color: var(--nh-dark); margin: 0; letter-spacing: -0.3px; }
.nh-pill-cta__desc { color: var(--nh-muted); font-size: 14px; margin: 0; font-weight: 500; }
.nh-pill-cta__btn { display: flex; align-items: center; gap: 15px; background: var(--nh-dark); color: #fff; padding: 12px 14px 12px 30px; border-radius: 50px; text-decoration: none; font-weight: 600; font-size: 14px; text-transform: uppercase; letter-spacing: 1px; transition: all 0.4s var(--nh-ease); flex-shrink: 0; }
.nh-pill-cta__btn-icon { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center; transition: 0.4s var(--nh-ease); }
.nh-pill-cta__btn:hover { background: var(--nh-gold); box-shadow: 0 10px 25px rgba(201, 169, 97, 0.3); }
.nh-pill-cta__btn:hover .nh-pill-cta__btn-icon { background: #fff; color: var(--nh-gold); transform: translateX(3px); }

@media (max-width: 900px) {
    .nh-pill-cta { padding: 50px 20px; }
    .nh-pill-cta__wrapper { flex-direction: column; text-align: center; border-radius: 30px; padding: 40px 30px; gap: 25px; }
    .nh-pill-cta__content { flex-direction: column; gap: 15px; }
    .nh-pill-cta__title { font-size: 18px; line-height: 1.3; }
    .nh-pill-cta__desc { font-size: 13px; }
    .nh-pill-cta__btn { width: 100%; justify-content: center; padding: 14px 20px; font-size: 13px; }
}/* ── ELEGANT OVERLAY 3-COLUMN GRID ── */
.nh-elegant-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.nh-elegant-card { display: block; position: relative; background: #fff; border-radius: 16px; overflow: hidden; text-decoration: none; border: 1px solid var(--nh-border); transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1); height: 320px; will-change: transform; }
.nh-elegant-card:hover { transform: translateY(-8px) translateZ(0); box-shadow: 0 15px 35px rgba(0,0,0,0.06); border-color: rgba(201, 169, 97, 0.4); }
.nh-elegant-card__img { position: absolute; inset: 0; z-index: 1; overflow: hidden; }
.nh-elegant-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--nh-ease); will-change: transform; }
.nh-elegant-card:hover .nh-elegant-card__img img { transform: scale(1.08) translateZ(0); }

.nh-elegant-card__body { position: absolute; bottom: 0; left: 0; right: 0; padding: 18px 20px; background: rgba(17, 19, 24, 0.55); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); z-index: 2; transition: all 0.4s ease; display: flex; flex-direction: column; text-align: left; }
.nh-elegant-card:hover .nh-elegant-card__body { background: rgba(17, 19, 24, 0.85); }

.nh-elegant-card__title { font-size: 16px; font-weight: 600; font-family: 'Inter', sans-serif; color: #fff; margin-bottom: 6px; transition: color 0.3s; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.nh-elegant-card__desc { display: none; } /* Hide description for compact overlay */
.nh-elegant-card__link { margin-top: auto; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--nh-gold); display: inline-flex; align-items: center; gap: 6px; transition: gap 0.3s; }
.nh-elegant-card:hover .nh-elegant-card__title { color: var(--nh-gold); }
.nh-elegant-card:hover .nh-elegant-card__link { gap: 10px; color: #fff; }

/* Responsive Adjustments for Elegant Grid */
@media (max-width: 1200px) { .nh-elegant-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 900px) { .nh-elegant-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; } .nh-elegant-card { height: 240px; } .nh-elegant-card__body { padding: 15px; } }
@media (max-width: 600px) { .nh-elegant-grid { grid-template-columns: 1fr; } .nh-elegant-card { height: 260px; } }


/* ── NEDEN BİZ? SECTION ── */
.nh-why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

@media (max-width: 1200px) {
    .nh-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nh-why-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.nh-why-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    border: 2px solid #f1f5f9;
    transition: all 0.3s ease;
    text-align: center;
}

.nh-why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
    border-color: var(--nh-gold);
}

.nh-why-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--nh-gold) 0%, #b89550 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #fff;
}

.nh-why-title {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--nh-dark);
    margin: 0 0 12px 0;
}

.nh-why-desc {
    font-size: 14px;
    line-height: 1.7;
    color: var(--nh-muted);
    margin: 0;
}

/* ── KAMPANYA BANNER ── */
.nh-campaign-banner {
    position: relative;
    overflow: hidden;
}

.nh-campaign-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.nh-campaign-content {
    position: relative;
    z-index: 2;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
    .nh-why-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .nh-why-card {
        padding: 30px 20px;
    }
    
    .nh-campaign-banner {
        padding: 40px 0 !important;
    }
    
    .nh-campaign-content h2 {
        font-size: 28px !important;
    }
    
    .nh-campaign-content p {
        font-size: 16px !important;
    }
}


/* ── 3'LÜ HIZLI ERİŞİM BUTONLARI ── */
.nh-quick-actions {
    padding: 0 0 60px;
}

.nh-quick-actions__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.nh-quick-action {
    background: #fff;
    border-radius: 16px;
    padding: 28px 32px;
    display: flex;
    align-items: center;
    gap: 20px;
    text-decoration: none;
    color: var(--nh-dark);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s var(--nh-ease);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.nh-quick-action::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(201,169,97,0.1), transparent);
    transition: left 0.5s ease;
}

.nh-quick-action:hover::before {
    left: 100%;
}

.nh-quick-action:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
    border-color: var(--nh-gold);
}

.nh-quick-action--highlight {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #fff;
}

.nh-quick-action--highlight:hover {
    border-color: #fff;
    box-shadow: 0 12px 40px rgba(37,211,102,0.3);
}

.nh-quick-action__icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: rgba(201,169,97,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s var(--nh-ease);
}

.nh-quick-action--highlight .nh-quick-action__icon {
    background: rgba(255,255,255,0.2);
}

.nh-quick-action:hover .nh-quick-action__icon {
    transform: scale(1.1) rotate(5deg);
}

.nh-quick-action__icon svg {
    color: var(--nh-gold);
}

.nh-quick-action--highlight .nh-quick-action__icon svg {
    color: #fff;
}

.nh-quick-action__content {
    flex: 1;
}

.nh-quick-action__content h3 {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 4px 0;
    color: inherit;
}

.nh-quick-action__content p {
    font-size: 13px;
    margin: 0;
    opacity: 0.7;
}

.nh-quick-action__arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(201,169,97,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s var(--nh-ease);
}

.nh-quick-action--highlight .nh-quick-action__arrow {
    background: rgba(255,255,255,0.2);
}

.nh-quick-action:hover .nh-quick-action__arrow {
    transform: translateX(4px);
}

.nh-quick-action__arrow svg {
    color: var(--nh-gold);
}

.nh-quick-action--highlight .nh-quick-action__arrow svg {
    color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
    /* Hero Slider Mobil Optimizasyonu */
    .nh-hero {
        height: 70vh;
        min-height: 500px;
        max-height: 600px;
    }
    
    .nh-hero__slide {
        background-size: cover;
        background-position: center center;
    }
    
    .nh-hero__caption {
        top: 35%;
        left: 5%;
        width: 90%;
    }
    
    .nh-hero__eyebrow {
        font-size: 11px;
        letter-spacing: 2px;
        margin-bottom: 15px;
    }
    
    .nh-hero__title {
        font-size: clamp(28px, 8vw, 42px);
    }
    
    .nh-hero__stats-container {
        bottom: 60px;
        max-width: 95%;
    }
    
    .nh-hero__stats {
        gap: 12px;
    }
    
    .nh-hero__stat {
        padding: 16px 24px;
        gap: 12px;
    }
    
    .nh-hero__stat strong {
        font-size: 24px;
    }
    
    .nh-hero__stat span {
        font-size: 11px;
        letter-spacing: 1px;
    }
    
    .nh-hero__dots {
        bottom: 20px;
        right: 50%;
        transform: translateX(50%);
    }
    
    /* 3'lü Butonlar Mobil Optimizasyonu */
    .nh-quick-actions {
        margin-top: -40px;
        padding: 0 0 40px;
    }
    
    .nh-quick-actions__grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .nh-quick-action {
        padding: 16px 20px;
        border-radius: 12px;
    }
    
    .nh-quick-action__icon {
        width: 44px;
        height: 44px;
    }
    
    .nh-quick-action__icon svg {
        width: 22px;
        height: 22px;
    }
    
    .nh-quick-action__content h3 {
        font-size: 15px;
    }
    
    .nh-quick-action__content p {
        font-size: 12px;
    }
    
    .nh-quick-action__arrow {
        width: 36px;
        height: 36px;
    }
    
    .nh-quick-action__arrow svg {
        width: 18px;
        height: 18px;
    }
}

/* Ekstra küçük ekranlar için */
@media (max-width: 480px) {
    .nh-hero {
        height: 60vh;
        min-height: 450px;
    }
    
    .nh-hero__title {
        font-size: clamp(24px, 7vw, 36px);
    }
    
    .nh-hero__stats {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }
    
    .nh-hero__stat {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
    }
    
    .nh-quick-action {
        padding: 14px 18px;
    }
    
    .nh-quick-action__icon {
        width: 40px;
        height: 40px;
    }
    
    .nh-quick-action__content h3 {
        font-size: 14px;
    }
    
    .nh-quick-action__content p {
        font-size: 11px;
    }
}


/* Desktop için görsel optimizasyonu */
@media (min-width: 1200px) {
    .nh-hero {
        height: 55vh;
        max-height: 600px;
    }
    
    .nh-hero__slide {
        background-size: cover;
        background-position: center 40%;
    }
    
    .nh-hero__caption {
        left: 10%;
        width: 65%;
        top: 35%;
    }
    
    .nh-hero__title {
        font-size: clamp(36px, 3.8vw, 52px);
    }
    
    .nh-hero__eyebrow {
        font-size: 11px;
        letter-spacing: 2.5px;
    }
    
    /* Stats kartları alta ortalanmış */
    .nh-hero__stats-container {
        bottom: 30px;
    }
    
    .nh-hero__stats {
        gap: 24px;
    }
    
    .nh-hero__stat {
        padding: 16px 28px;
    }
    
    .nh-hero__stat strong {
        font-size: 24px;
    }
    
    .nh-hero__stat span {
        font-size: 10px;
        letter-spacing: 0.8px;
    }
}

/* Tablet landscape için */
@media (min-width: 769px) and (max-width: 1199px) {
    .nh-hero {
        height: 55vh;
        max-height: 540px;
    }
    
    .nh-hero__slide {
        background-position: center center;
    }
    
    .nh-hero__caption {
        left: 6%;
        width: 70%;
    }
    
    .nh-hero__stats-container {
        bottom: 35px;
    }
}

/* Tüm ekranlar için görsel kalitesi */
.nh-hero__slide {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}
