/* =========================================================
   GİB Tekne Tekstil & Temizlik — Main Stylesheet v2
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&family=Montserrat:wght@400;600;700;800&display=swap');

/* ── CSS Variables ──────────────────────────────────────── */
:root {
  --blue:       #0A4FA0;
  --blue-dark:  #062D6B;
  --blue-mid:   #1768C4;
  --blue-light: #E8F0FB;
  --yellow:     #F5B800;
  --yellow-dark:#D49A00;
  --white:      #FFFFFF;
  --gray-50:    #F9FAFB;
  --gray-100:   #F3F4F6;
  --gray-200:   #E5E7EB;
  --gray-400:   #9CA3AF;
  --gray-600:   #4B5563;
  --gray-800:   #1F2937;
  --black:      #0D1117;
  --shadow-sm:  0 1px 3px rgba(10,79,160,.10);
  --shadow-md:  0 4px 16px rgba(10,79,160,.15);
  --shadow-lg:  0 8px 32px rgba(10,79,160,.20);
  --shadow-xl:  0 16px 48px rgba(10,79,160,.25);
  --radius:     12px;
  --radius-lg:  20px;
  --radius-xl:  32px;
  --trans:      .3s ease;
  --font:       'Poppins', sans-serif;
  --font-head:  'Montserrat', sans-serif;
}

/* ── Reset ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font); color: var(--gray-800); background: var(--white); line-height: 1.6; overflow-x: hidden; }
img  { max-width: 100%; display: block; }
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }
button, input, textarea, select { font-family: var(--font); }

/* ── Typography ─────────────────────────────────────────── */
h1,h2,h3,h4,h5,h6 { font-family: var(--font-head); font-weight: 700; line-height: 1.2; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.5rem); }
p  { line-height: 1.75; color: var(--gray-600); }

/* ── Utility ────────────────────────────────────────────── */
.container       { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container--wide { max-width: 1400px; margin: 0 auto; padding: 0 24px; }
.section         { padding: 96px 0; }
.section--sm     { padding: 64px 0; }
.text-center     { text-align: center; }
.text-blue       { color: var(--blue); }
.text-yellow     { color: var(--yellow); }
.badge           { display: inline-flex; align-items: center; gap: 6px;
                   background: var(--blue-light); color: var(--blue);
                   padding: 6px 14px; border-radius: 100px;
                   font-size: .78rem; font-weight: 600; letter-spacing: .05em;
                   text-transform: uppercase; margin-bottom: 16px; }
.badge::before   { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--blue); display: block; }
.section-title   { margin-bottom: 16px; color: var(--gray-800); }
.section-subtitle{ font-size: 1.1rem; color: var(--gray-600); max-width: 580px; margin-bottom: 48px; }
.section-header  { display: flex; flex-direction: column; align-items: flex-start; }
.section-header.center { align-items: center; text-align: center; }
.section-header.center .section-subtitle { margin-left: auto; margin-right: auto; }

/* ── Buttons ────────────────────────────────────────────── */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; border-radius: var(--radius); font-weight: 600; font-size: .95rem; cursor: pointer; border: 2px solid transparent; transition: var(--trans); white-space: nowrap; }
.btn--primary { background: var(--blue); color: var(--white); border-color: var(--blue); }
.btn--primary:hover { background: var(--blue-dark); border-color: var(--blue-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--yellow  { background: var(--yellow); color: var(--gray-800); border-color: var(--yellow); }
.btn--yellow:hover  { background: var(--yellow-dark); border-color: var(--yellow-dark); transform: translateY(-2px); box-shadow: 0 4px 16px rgba(245,184,0,.35); }
.btn--outline { background: transparent; color: var(--blue); border-color: var(--blue); }
.btn--outline:hover { background: var(--blue); color: var(--white); transform: translateY(-2px); }
.btn--white   { background: var(--white); color: var(--blue); }
.btn--white:hover   { background: var(--blue-light); transform: translateY(-2px); }
.btn--lg { padding: 18px 36px; font-size: 1.05rem; }
.btn--sm { padding: 10px 20px; font-size: .85rem; }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ── Header ─────────────────────────────────────────────── */
.header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: rgba(255,255,255,.92); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-bottom: 1px solid var(--gray-200); transition: box-shadow var(--trans), background var(--trans); }
.header.scrolled { box-shadow: var(--shadow-md); background: var(--white); }
.header__inner   { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.header__logo    { display: flex; align-items: center; gap: 12px; }
.header__logo img{ height: 44px; width: auto; }
.header__logo-text { font-family: var(--font-head); font-size: 1.1rem; font-weight: 800; color: var(--blue); line-height: 1.1; }
.header__logo-text span { display: block; font-size: .7rem; font-weight: 500; color: var(--gray-600); letter-spacing: .05em; }
.nav             { display: flex; align-items: center; gap: 4px; }
.nav__link       { padding: 8px 14px; border-radius: 8px; font-size: .9rem; font-weight: 500; color: var(--gray-800); transition: var(--trans); }
.nav__link:hover, .nav__link.active { color: var(--blue); background: var(--blue-light); }
.nav__cta { background: var(--yellow) !important; color: var(--gray-800) !important; padding: 10px 20px !important; border-radius: var(--radius) !important; font-weight: 700 !important; margin-left: 8px; box-shadow: 0 2px 8px rgba(245,184,0,.4); }
.nav__cta:hover { background: var(--yellow-dark) !important; transform: translateY(-1px); box-shadow: 0 4px 12px rgba(245,184,0,.5) !important; }
.burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; background: none; border: none; }
.burger span { display: block; width: 24px; height: 2px; background: var(--gray-800); border-radius: 2px; transition: var(--trans); }
.burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── Hero Slider ─────────────────────────────────────────── */
.hero { position: relative; width: 100%; height: 100vh; min-height: 600px; overflow: hidden; }
.hero__slides { position: absolute; inset: 0; }
.hero__slide  { position: absolute; inset: 0; opacity: 0; transition: opacity .8s ease; }
.hero__slide.active { opacity: 1; }
.hero__slide-media { position: absolute; inset: 0; background-size: cover; background-position: center; }
.hero__slide-media video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero__overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(6,45,107,.85) 0%, rgba(10,79,160,.60) 50%, rgba(6,45,107,.40) 100%); }
.hero__content { position: absolute; inset: 0; display: flex; align-items: center; padding: 0 24px; max-width: 1200px; margin: 0 auto; left: 50%; transform: translateX(-50%); }
.hero__text    { max-width: 680px; color: var(--white); }
.hero__badge   { display: inline-flex; align-items: center; gap: 6px; background: rgba(245,184,0,.2); border: 1px solid rgba(245,184,0,.5); color: var(--yellow); padding: 6px 16px; border-radius: 100px; font-size: .8rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 20px; backdrop-filter: blur(4px); }
.hero__title   { color: var(--white); margin-bottom: 20px; text-shadow: 0 2px 12px rgba(0,0,0,.3); }
.hero__title em{ color: var(--yellow); font-style: normal; }
.hero__subtitle{ font-size: 1.1rem; color: rgba(255,255,255,.85); margin-bottom: 36px; max-width: 500px; }
.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero__arrows  { position: absolute; bottom: 40px; right: 40px; display: flex; gap: 12px; z-index: 10; }
.hero__arrow   { width: 48px; height: 48px; border-radius: 50%; background: rgba(255,255,255,.15); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,.3); color: var(--white); cursor: pointer; display: flex; align-items: center; justify-content: center; transition: var(--trans); }
.hero__arrow:hover { background: var(--yellow); border-color: var(--yellow); color: var(--gray-800); }
.hero__dots    { position: absolute; bottom: 48px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 10; }
.hero__dot     { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.4); cursor: pointer; transition: var(--trans); }
.hero__dot.active { background: var(--yellow); width: 24px; border-radius: 4px; }

/* ── About Section ──────────────────────────────────────── */
.about-home { background: var(--gray-50); }
.about-home__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-home__image { position: relative; border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-xl); }
.about-home__image img { width: 100%; height: 480px; object-fit: cover; }
.about-home__features { display: flex; flex-direction: column; gap: 16px; margin: 28px 0; }
.feature-item { display: flex; align-items: flex-start; gap: 14px; padding: 16px; background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-sm); transition: var(--trans); }
.feature-item:hover { box-shadow: var(--shadow-md); transform: translateX(4px); }
.feature-item__icon { width: 44px; height: 44px; border-radius: 10px; background: var(--blue-light); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.feature-item__icon svg { width: 22px; height: 22px; color: var(--blue); }
.feature-item__title { font-weight: 600; color: var(--gray-800); margin-bottom: 2px; font-size: .95rem; }
.feature-item__text  { font-size: .85rem; color: var(--gray-600); line-height: 1.5; }

/* ── Services Section ───────────────────────────────────── */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.service-card  { background: var(--white); border-radius: var(--radius-lg); border: 1px solid var(--gray-200); overflow: hidden; transition: var(--trans); box-shadow: var(--shadow-sm); }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); border-color: var(--blue-light); }
.service-card__image { height: 200px; overflow: hidden; position: relative; }
.service-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.service-card:hover .service-card__image img { transform: scale(1.06); }
.service-card__cat  { position: absolute; top: 12px; left: 12px; background: var(--blue); color: var(--white); font-size: .72rem; font-weight: 600; padding: 4px 10px; border-radius: 100px; text-transform: uppercase; letter-spacing: .05em; }
.service-card__body { padding: 24px; }
.service-card__title{ font-size: 1.1rem; margin-bottom: 8px; color: var(--gray-800); }
.service-card__text { font-size: .88rem; color: var(--gray-600); line-height: 1.6; margin-bottom: 16px; }
.service-card__link { display: inline-flex; align-items: center; gap: 6px; color: var(--blue); font-weight: 600; font-size: .88rem; transition: gap var(--trans); }
.service-card:hover .service-card__link { gap: 10px; }

/* ── References ─────────────────────────────────────────── */
.references-home { background: var(--blue-dark); }
.references-home .badge { background: rgba(255,255,255,.12); color: rgba(255,255,255,.8); }
.references-home .badge::before { background: var(--yellow); }
.references-home .section-title { color: var(--white); }
.references-home .section-subtitle { color: rgba(255,255,255,.7); }

/* ── Star Rating ─────────────────────────────────────────── */
.star-rating       { display: flex; gap: 4px; }
.star-rating svg   { width: 20px; height: 20px; cursor: pointer; color: var(--gray-200); transition: color var(--trans); }
.star-rating svg.filled, .star-rating svg:hover,
.star-rating svg.hover { color: var(--yellow); fill: var(--yellow); }
.stars-display     { display: flex; gap: 3px; }
.stars-display svg { width: 16px; height: 16px; }

/* ── Reviews ─────────────────────────────────────────────── */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.review-card  { background: rgba(255,255,255,.08); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius-lg); padding: 28px; transition: var(--trans); }
.review-card:hover { background: rgba(255,255,255,.12); transform: translateY(-4px); }
.review-card__stars { display: flex; gap: 4px; margin-bottom: 16px; }
.review-card__stars svg { width: 18px; height: 18px; color: var(--yellow); fill: var(--yellow); }
.review-card__text  { color: rgba(255,255,255,.9); font-size: .95rem; line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.review-card__text::before { content: '"'; font-size: 2rem; color: var(--yellow); line-height: 0; vertical-align: -.5rem; margin-right: 4px; }
.review-card__author{ display: flex; align-items: center; gap: 12px; }
.review-card__avatar{ width: 44px; height: 44px; border-radius: 50%; background: var(--blue-mid); display: flex; align-items: center; justify-content: center; font-weight: 700; color: var(--white); font-size: .9rem; flex-shrink: 0; }
.review-card__name  { font-weight: 600; color: var(--white); font-size: .95rem; }
.review-card__role  { font-size: .8rem; color: rgba(255,255,255,.55); }

/* ── Ref Gallery ─────────────────────────────────────────── */
.ref-gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 16px; margin-top: 48px; }
.ref-gallery__item { border-radius: var(--radius); overflow: hidden; position: relative; aspect-ratio: 4/3; background: rgba(255,255,255,.05); }
.ref-gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.ref-gallery__item:hover img { transform: scale(1.05); }
.ref-gallery__overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(6,45,107,.8) 100%); opacity: 0; transition: var(--trans); display: flex; align-items: flex-end; padding: 16px; }
.ref-gallery__item:hover .ref-gallery__overlay { opacity: 1; }
.ref-gallery__label { color: var(--white); font-size: .85rem; font-weight: 600; }

/* ── CTA ────────────────────────────────────────────────── */
.cta { background: linear-gradient(135deg, var(--yellow) 0%, #FFC700 100%); }
.cta__inner   { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.cta__title   { font-size: clamp(1.4rem, 3vw, 2rem); color: var(--gray-800); margin-bottom: 8px; }
.cta__subtitle{ color: rgba(31,41,55,.75); font-size: 1rem; }

/* ── News ────────────────────────────────────────────────── */
.news-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.news-card  { background: var(--white); border-radius: var(--radius-lg); border: 1px solid var(--gray-200); overflow: hidden; transition: var(--trans); box-shadow: var(--shadow-sm); }
.news-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.news-card__image { height: 200px; overflow: hidden; position: relative; }
.news-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.news-card:hover .news-card__image img { transform: scale(1.05); }
.news-card__body  { padding: 24px; }
.news-card__date  { font-size: .8rem; color: var(--gray-400); margin-bottom: 8px; display: flex; align-items: center; gap: 6px; }
.news-card__title { font-size: 1rem; margin-bottom: 10px; color: var(--gray-800); font-weight: 700; line-height: 1.4; }
.news-card__text  { font-size: .88rem; color: var(--gray-600); display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; margin-bottom: 16px; }
.news-card__link  { color: var(--blue); font-weight: 600; font-size: .88rem; display: inline-flex; align-items: center; gap: 6px; }

/* ── Footer ──────────────────────────────────────────────── */
.footer { background: var(--black); color: rgba(255,255,255,.75); padding: 64px 0 0; }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; margin-bottom: 48px; }
.footer__logo-text { font-family: var(--font-head); font-size: 1.15rem; font-weight: 800; color: var(--white); }
.footer__logo-text span { display: block; font-size: .7rem; font-weight: 400; opacity: .6; letter-spacing: .05em; }
.footer__desc   { font-size: .88rem; line-height: 1.7; margin: 16px 0 24px; opacity: .7; }
.footer__socials{ display: flex; gap: 8px; }
.footer__social { width: 36px; height: 36px; border-radius: 8px; background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center; transition: var(--trans); }
.footer__social:hover { background: var(--blue); }
.footer__social svg { width: 16px; height: 16px; color: var(--white); }
.footer__col-title  { font-family: var(--font-head); font-size: .85rem; font-weight: 700; color: var(--white); letter-spacing: .08em; text-transform: uppercase; margin-bottom: 20px; }
.footer__links      { display: flex; flex-direction: column; gap: 10px; }
.footer__link       { font-size: .88rem; opacity: .7; transition: var(--trans); }
.footer__link:hover { opacity: 1; color: var(--yellow); padding-left: 6px; }
.footer__contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 14px; font-size: .88rem; }
.footer__contact-item svg { width: 16px; height: 16px; color: var(--yellow); flex-shrink: 0; margin-top: 2px; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 20px 0; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer__bottom p { font-size: .83rem; opacity: .5; }

/* ── WhatsApp Float ──────────────────────────────────────── */
.wa-float { position: fixed; bottom: 28px; right: 28px; z-index: 999; width: 58px; height: 58px; border-radius: 50%; background: #25D366; color: var(--white); display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 16px rgba(37,211,102,.5); transition: var(--trans); cursor: pointer; animation: pulse-wa 2.5s infinite; }
.wa-float:hover { transform: scale(1.12); background: #20BB5A; }
.wa-float svg { width: 28px; height: 28px; }
@keyframes pulse-wa {
  0%,100% { box-shadow: 0 4px 16px rgba(37,211,102,.5); }
  50%      { box-shadow: 0 4px 28px rgba(37,211,102,.75), 0 0 0 8px rgba(37,211,102,.15); }
}

/* ── Page Hero ───────────────────────────────────────────── */
.page-hero { background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue-mid) 100%); padding: 120px 0 64px; color: var(--white); }
.page-hero h1 { color: var(--white); }
.breadcrumb   { display: flex; align-items: center; gap: 6px; font-size: .85rem; color: rgba(255,255,255,.6); margin-top: 12px; }
.breadcrumb a:hover { color: var(--yellow); }
.breadcrumb span { color: rgba(255,255,255,.4); }

/* ── About Page ──────────────────────────────────────────── */
.about-values { display: grid; grid-template-columns: repeat(auto-fit,minmax(220px,1fr)); gap: 24px; margin-top: 48px; }
.value-card   { background: var(--white); border-radius: var(--radius-lg); padding: 28px; border: 1px solid var(--gray-200); text-align: center; transition: var(--trans); }
.value-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: var(--blue-light); }
.value-card__icon { width: 60px; height: 60px; border-radius: var(--radius); background: var(--blue-light); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.value-card__icon svg { width: 28px; height: 28px; color: var(--blue); }
.value-card h3 { margin-bottom: 8px; font-size: 1rem; }
.value-card p  { font-size: .87rem; color: var(--gray-600); }

/* ── Services Page ───────────────────────────────────────── */
.services-tabs { display: flex; gap: 8px; margin-bottom: 40px; flex-wrap: wrap; }
.services-tab  { padding: 10px 24px; border-radius: 100px; background: var(--gray-100); color: var(--gray-600); font-weight: 600; cursor: pointer; border: none; font-size: .9rem; transition: var(--trans); }
.services-tab.active { background: var(--blue); color: var(--white); }
.services-tab:hover:not(.active) { background: var(--blue-light); color: var(--blue); }
.services-panel { display: none; }
.services-panel.active { display: grid; grid-template-columns: repeat(auto-fill,minmax(260px,1fr)); gap: 24px; }
.service-detail-card { background: var(--white); border-radius: var(--radius-lg); border: 1px solid var(--gray-200); overflow: hidden; box-shadow: var(--shadow-sm); transition: var(--trans); }
.service-detail-card:hover { box-shadow: var(--shadow-xl); transform: translateY(-6px); }
.service-detail-card__img { height: 200px; overflow: hidden; }
.service-detail-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.service-detail-card:hover .service-detail-card__img img { transform: scale(1.06); }
.service-detail-card__body { padding: 24px; }

/* ── Contact ─────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 60px; align-items: start; }
.contact-form-wrap { background: var(--white); border-radius: var(--radius-xl); padding: 40px; box-shadow: var(--shadow-lg); border: 1px solid var(--gray-100); }
.form-group   { margin-bottom: 20px; }
.form-label   { display: block; font-size: .88rem; font-weight: 600; color: var(--gray-800); margin-bottom: 6px; }
.form-control { width: 100%; padding: 12px 16px; border: 2px solid var(--gray-200); border-radius: var(--radius); font-size: .95rem; font-family: var(--font); color: var(--gray-800); transition: border-color var(--trans), box-shadow var(--trans); background: var(--white); outline: none; }
.form-control:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(10,79,160,.1); }
.form-control::placeholder { color: var(--gray-400); }
textarea.form-control { resize: vertical; min-height: 120px; }
.contact-info       { display: flex; flex-direction: column; gap: 20px; }
.contact-info-card  { background: var(--white); border-radius: var(--radius-lg); padding: 24px; border: 1px solid var(--gray-200); display: flex; gap: 16px; align-items: flex-start; box-shadow: var(--shadow-sm); transition: var(--trans); }
.contact-info-card:hover { box-shadow: var(--shadow-md); }
.contact-info-card__icon { width: 48px; height: 48px; border-radius: 10px; background: var(--blue-light); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-info-card__icon svg { width: 22px; height: 22px; color: var(--blue); }
.contact-info-card h4 { font-size: .88rem; font-weight: 700; color: var(--gray-800); margin-bottom: 4px; }
.contact-info-card p  { font-size: .88rem; color: var(--gray-600); line-height: 1.5; }
.map-wrap  { border-radius: var(--radius-lg); overflow: hidden; height: 280px; margin-top: 24px; box-shadow: var(--shadow-sm); }
.map-wrap iframe { width: 100%; height: 100%; border: none; }

/* ── News Detail ─────────────────────────────────────────── */
.news-detail { max-width: 800px; margin: 0 auto; }
.news-detail__meta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 24px; }
.news-detail__meta span { font-size: .85rem; color: var(--gray-400); display: flex; align-items: center; gap: 6px; }
.news-detail__cover { width: 100%; border-radius: var(--radius-xl); overflow: hidden; margin-bottom: 32px; }
.news-detail__cover img { width: 100%; max-height: 480px; object-fit: cover; }
.news-detail__content { font-size: 1.02rem; line-height: 1.85; color: var(--gray-700); }
.news-detail__content p { margin-bottom: 20px; }

/* ── Comments ─────────────────────────────────────────────── */
.comments-section { background: var(--gray-50); border-radius: var(--radius-xl); padding: 40px; margin-top: 48px; }
.comments-list    { display: flex; flex-direction: column; gap: 20px; margin-bottom: 36px; }
.comment-item     { background: var(--white); border-radius: var(--radius-lg); padding: 24px; border: 1px solid var(--gray-200); box-shadow: var(--shadow-sm); }
.comment-item__header { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.comment-item__avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--blue-light); display: flex; align-items: center; justify-content: center; font-weight: 700; color: var(--blue); font-size: .85rem; }
.comment-item__name   { font-weight: 600; color: var(--gray-800); font-size: .95rem; }
.comment-item__date   { font-size: .78rem; color: var(--gray-400); margin-left: auto; }
.comment-item__text   { font-size: .92rem; color: var(--gray-600); line-height: 1.7; }

/* ── CAPTCHA ─────────────────────────────────────────────── */
.captcha-box { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.captcha-question { background: var(--blue-dark); color: var(--yellow); padding: 10px 18px; border-radius: var(--radius); font-weight: 800; font-size: 1rem; letter-spacing: .06em; font-family: var(--font-head); flex-shrink: 0; }
.captcha-box .form-control { max-width: 100px; text-align: center; font-weight: 700; font-size: 1rem; }

/* ── Review Popup Modal ──────────────────────────────────── */
.review-popup-backdrop { position: fixed; inset: 0; background: rgba(6,45,107,.6); backdrop-filter: blur(4px); z-index: 2000; display: none; align-items: center; justify-content: center; padding: 24px; }
.review-popup-backdrop.open { display: flex; }
.review-popup { background: var(--white); border-radius: var(--radius-xl); padding: 40px; max-width: 520px; width: 100%; box-shadow: var(--shadow-xl); position: relative; animation: popupIn .35s ease; }
@keyframes popupIn { from { opacity:0; transform: scale(.94) translateY(20px); } to { opacity:1; transform: scale(1) translateY(0); } }
.review-popup__close { position: absolute; top: 16px; right: 16px; width: 36px; height: 36px; border-radius: 50%; background: var(--gray-100); border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; color: var(--gray-600); transition: var(--trans); }
.review-popup__close:hover { background: var(--gray-200); color: var(--gray-800); }
.review-popup h3 { margin-bottom: 6px; }
.review-popup p.sub { font-size: .88rem; color: var(--gray-400); margin-bottom: 24px; }
.rating-select { display: flex; gap: 8px; margin-bottom: 4px; }
.rating-select svg { width: 32px; height: 32px; cursor: pointer; color: var(--gray-200); transition: color var(--trans); }
.rating-select svg.active, .rating-select svg:hover ~ svg { color: var(--gray-200); }
.rating-select:hover svg { color: var(--yellow); fill: var(--yellow); }
.rating-select svg:hover ~ svg { color: var(--gray-200); fill: none; }
.rating-select .star-filled { color: var(--yellow); fill: var(--yellow); }
.open-review-btn { display: inline-flex; align-items: center; gap: 8px; margin-top: 32px; }

/* ── Pagination ──────────────────────────────────────────── */
.pagination { display: flex; gap: 8px; justify-content: center; margin-top: 48px; flex-wrap: wrap; }
.page-btn   { width: 40px; height: 40px; border-radius: var(--radius); background: var(--white); border: 2px solid var(--gray-200); display: flex; align-items: center; justify-content: center; font-weight: 600; color: var(--gray-600); transition: var(--trans); font-size: .9rem; }
.page-btn.active, .page-btn:hover { background: var(--blue); border-color: var(--blue); color: var(--white); }

/* ── Alert ───────────────────────────────────────────────── */
.alert { padding: 14px 20px; border-radius: var(--radius); font-size: .92rem; margin-bottom: 20px; display: flex; align-items: center; gap: 10px; }
.alert--success { background: #ECFDF5; color: #065F46; border: 1px solid #A7F3D0; }
.alert--error   { background: #FEF2F2; color: #991B1B; border: 1px solid #FECACA; }
.alert--info    { background: var(--blue-light); color: var(--blue); border: 1px solid #BFDBFE; }
.alert svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ── Image Gallery (multi-photo) ─────────────────────────── */
.photo-gallery { display: grid; grid-template-columns: repeat(auto-fill,minmax(200px,1fr)); gap: 12px; margin: 24px 0; }
.photo-gallery__item { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; cursor: pointer; position: relative; }
.photo-gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.photo-gallery__item:hover img { transform: scale(1.06); }

/* ── Lightbox ────────────────────────────────────────────── */
.lightbox { position: fixed; inset: 0; background: rgba(0,0,0,.92); z-index: 3000; display: none; align-items: center; justify-content: center; }
.lightbox.open { display: flex; }
.lightbox img  { max-width: 92vw; max-height: 88vh; border-radius: var(--radius); object-fit: contain; }
.lightbox__close { position: absolute; top: 20px; right: 24px; color: white; font-size: 2rem; cursor: pointer; background: none; border: none; line-height: 1; }
.lightbox__prev, .lightbox__next { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,.15); border: none; color: white; width: 48px; height: 48px; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: var(--trans); }
.lightbox__prev:hover, .lightbox__next:hover { background: rgba(255,255,255,.3); }
.lightbox__prev { left: 20px; }
.lightbox__next { right: 20px; }

/* ── Fade Animations ─────────────────────────────────────── */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity .6s ease, transform .6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up-1 { transition-delay: .1s; }
.fade-up-2 { transition-delay: .2s; }
.fade-up-3 { transition-delay: .3s; }
.fade-up-4 { transition-delay: .4s; }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .about-home__inner { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .nav { display: none; position: fixed; top: 72px; left: 0; right: 0; background: var(--white); flex-direction: column; padding: 20px; border-bottom: 1px solid var(--gray-200); box-shadow: var(--shadow-lg); gap: 4px; align-items: stretch; }
  .nav.open { display: flex; }
  .nav__link { padding: 12px 16px; border-radius: var(--radius); }
  .nav__cta  { text-align: center; margin-left: 0 !important; }
  .burger { display: flex; }
  .hero__arrows { bottom: 20px; right: 20px; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .cta__inner   { flex-direction: column; text-align: center; }
  .services-tabs { justify-content: center; }
  .review-popup { padding: 28px; }
}
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero__content { left: 0; transform: none; max-width: 100%; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { justify-content: center; }
  .captcha-box { flex-direction: column; align-items: flex-start; }
}
