/* ============================================================
   ASFA YAPI – Ana Stil Dosyası
   ============================================================ */

:root {
  --navy:   #0d2137;
  --navy2:  #163352;
  --orange: #e8611a;
  --orange2:#f0853d;
  --white:  #ffffff;
  --light:  #f4f7fa;
  --gray:   #6b7280;
  --dark:   #111827;
  --border: #e5e7eb;
  --radius: 10px;
  --shadow: 0 4px 24px rgba(0,0,0,0.10);
  --transition: 0.3s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
}

img { display: block; max-width: 100%; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--orange2);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,97,26,0.35);
}
.btn-outline {
  background: transparent;
  border-color: var(--white);
  color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
}
.btn-outline-dark {
  background: transparent;
  border-color: var(--orange);
  color: var(--orange);
}
.btn-outline-dark:hover {
  background: var(--orange);
  color: var(--white);
}

/* ── Section Headers ─────────────────────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-label {
  display: inline-block;
  background: rgba(232,97,26,0.12);
  color: var(--orange);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.section-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
}
.section-header p {
  margin-top: 14px;
  color: var(--gray);
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.05rem;
}

/* ── TOP BAR ─────────────────────────────────────────────── */
.topbar {
  background: var(--navy);
  color: rgba(255,255,255,0.8);
  font-size: 0.82rem;
  padding: 8px 0;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}
.topbar a { color: rgba(255,255,255,0.8); transition: color 0.2s; }
.topbar a:hover { color: var(--orange); }
.topbar-left, .topbar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.topbar-item {
  display: flex;
  align-items: center;
  gap: 6px;
}
.topbar-item svg { flex-shrink: 0; }

/* ── HEADER / NAV ───────────────────────────────────────── */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  transition: var(--transition);
}
.header.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,0.14); }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.logo img {
  height: 52px;
  width: auto;
  object-fit: contain;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-text strong {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--navy);
}
.logo-text span {
  font-size: 0.7rem;
  color: var(--orange);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link {
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--dark);
  transition: var(--transition);
  position: relative;
}
.nav-link:hover,
.nav-link.active {
  color: var(--orange);
  background: rgba(232,97,26,0.07);
}

/* Dropdown */
.nav-item { position: relative; }
.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  min-width: 240px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: var(--transition);
  z-index: 100;
}
.nav-item:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
/* --- L1 dropdown items --- */
.nav-dropdown-item { position: relative; }
.nav-dropdown-item > a,
.nav-dropdown > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 16px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
  transition: var(--transition);
  border-bottom: 1px solid var(--border);
  gap: 8px;
}
.nav-dropdown-item:last-child > a,
.nav-dropdown > a:last-child { border-bottom: none; }
.nav-dropdown-item > a:hover,
.nav-dropdown > a:hover { color: var(--orange); background: var(--light); }
.nav-dropdown-item > a .sub-arrow {
  color: var(--orange);
  font-size: 1rem;
  flex-shrink: 0;
  transition: transform 0.2s;
}
.nav-dropdown-item:hover > a .sub-arrow { transform: translateX(3px); }

/* --- L2 fly-out --- */
.nav-subdropdown {
  position: absolute;
  left: 100%;
  top: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  min-width: 240px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(6px);
  transition: var(--transition);
  z-index: 200;
}
.nav-dropdown-item:hover .nav-subdropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}
.nav-subdropdown a {
  display: block;
  padding: 10px 16px;
  font-size: 0.85rem;
  color: var(--gray);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.nav-subdropdown a:last-child { border-bottom: none; }
.nav-subdropdown a:hover { color: var(--orange); background: var(--light); }

.nav-cta { margin-left: 12px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  border: none;
  background: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../depo1/c931f7f2-bcba-44ae-80db-9b48dd45e008.JPG');
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition: transform 8s ease;
}
.hero-bg.animated { transform: scale(1); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13,33,55,0.88) 0%,
    rgba(13,33,55,0.65) 60%,
    rgba(232,97,26,0.3) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 680px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232,97,26,0.2);
  border: 1px solid rgba(232,97,26,0.4);
  color: #fbbf89;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 24px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.hero-content h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
}
.hero-content h1 em {
  font-style: normal;
  color: var(--orange2);
}
.hero-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
  margin-bottom: 36px;
  max-width: 540px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-stats {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  background: rgba(13,33,55,0.75);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-stats .container {
  display: flex;
  justify-content: space-around;
  padding-top: 24px;
  padding-bottom: 24px;
}
.stat-item {
  text-align: center;
  color: var(--white);
}
.stat-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--orange2);
  display: block;
}
.stat-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.04em;
}

/* ── PRODUCTS SECTION ────────────────────────────────────── */
.products { padding: 96px 0; background: var(--white); }
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.product-card {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.14);
  border-color: var(--orange);
}
.product-card-img {
  height: 210px;
  overflow: hidden;
  position: relative;
}
.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .product-card-img img { transform: scale(1.07); }
.product-card-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--orange);
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.product-card-body {
  padding: 22px 22px 24px;
}
.product-card-body h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.product-card-body p {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 18px;
}
.product-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--orange);
  transition: gap 0.2s;
}
.product-card-link:hover { gap: 10px; }

/* ── ABOUT SECTION ───────────────────────────────────────── */
.about { padding: 96px 0; background: var(--light); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-images {
  position: relative;
  height: 480px;
}
.about-img-main {
  position: absolute;
  width: 72%;
  height: 85%;
  top: 0;
  left: 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-secondary {
  position: absolute;
  width: 48%;
  height: 52%;
  bottom: 0;
  right: 0;
  border-radius: 12px;
  overflow: hidden;
  border: 6px solid var(--white);
  box-shadow: var(--shadow);
}
.about-img-secondary img { width: 100%; height: 100%; object-fit: cover; }
.about-badge-img {
  position: absolute;
  top: 50%;
  right: 12%;
  transform: translateY(-50%);
  background: var(--orange);
  color: white;
  border-radius: 12px;
  padding: 18px 22px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(232,97,26,0.45);
  z-index: 3;
}
.about-badge-img strong { font-size: 2rem; font-weight: 800; display: block; line-height: 1; }
.about-badge-img span { font-size: 0.78rem; font-weight: 600; opacity: 0.9; }

.about-content h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 20px;
}
.about-content p {
  color: var(--gray);
  margin-bottom: 16px;
  font-size: 1rem;
  line-height: 1.75;
}
.about-features {
  margin: 28px 0 36px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--dark);
}
.about-feature-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--orange);
  margin-top: 2px;
}

/* ── WHY US ──────────────────────────────────────────────── */
.whyus {
  padding: 96px 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.whyus::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(232,97,26,0.08);
}
.whyus .section-header h2 { color: var(--white); }
.whyus .section-label { background: rgba(255,255,255,0.1); color: var(--orange2); }
.whyus .section-header p { color: rgba(255,255,255,0.65); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.feature-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
}
.feature-card:hover {
  background: rgba(232,97,26,0.15);
  border-color: rgba(232,97,26,0.4);
  transform: translateY(-4px);
}
.feature-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--orange), var(--orange2));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: white;
}
.feature-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.feature-card p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

/* ── GALLERY ─────────────────────────────────────────────── */
.gallery { padding: 96px 0; background: var(--white); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 12px;
}
.gallery-item {
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.gallery-item:first-child {
  grid-column: span 2;
  grid-row: span 2;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  min-height: 180px;
}
.gallery-item:first-child img { min-height: 380px; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13,33,55,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
  color: white;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }

/* ── CONTACT ─────────────────────────────────────────────── */
.contact { padding: 96px 0; background: var(--light); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 48px;
  align-items: start;
}
.contact-info h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
}
.contact-info > p {
  color: var(--gray);
  margin-bottom: 36px;
  line-height: 1.7;
}
.contact-items { display: flex; flex-direction: column; gap: 20px; }
.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-item-icon {
  width: 48px;
  height: 48px;
  background: var(--orange);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}
.contact-item-text strong {
  display: block;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray);
  margin-bottom: 3px;
}
.contact-item-text a,
.contact-item-text p {
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--navy);
  transition: color 0.2s;
}
.contact-item-text a:hover { color: var(--orange); }

.map-container {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.map-container iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: none;
}

/* ── FOOTER ──────────────────────────────────────────────── */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.75);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand .logo img { filter: brightness(10); }
.footer-brand .logo-text strong { color: white; }
.footer-brand .logo-text span { color: var(--orange2); }
.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
  margin-bottom: 20px;
}
.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
}
.footer-social a:hover {
  background: var(--orange);
  color: white;
}
.footer-col h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-links a::before {
  content: '›';
  color: var(--orange);
  font-weight: bold;
}
.footer-links a:hover { color: var(--orange2); }

.footer-contact-items { display: flex; flex-direction: column; gap: 12px; }
.footer-contact-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.86rem;
  color: rgba(255,255,255,0.65);
}
.footer-contact-item svg { flex-shrink: 0; margin-top: 2px; color: var(--orange); }

.footer-bottom {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}
.footer-bottom a { color: var(--orange2); }

/* ── WHATSAPP BUTTON ─────────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 6px 20px rgba(37,211,102,0.5);
  z-index: 9999;
  transition: transform 0.3s, box-shadow 0.3s;
  animation: wa-pulse 2.5s infinite;
}
.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 28px rgba(37,211,102,0.65);
  animation: none;
}
@keyframes wa-pulse {
  0%,100% { box-shadow: 0 6px 20px rgba(37,211,102,0.5); }
  50%      { box-shadow: 0 6px 32px rgba(37,211,102,0.8); }
}
.map-float {
  position: fixed;
  bottom: 28px;
  right: 96px;
  width: 56px;
  height: 56px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 6px 20px rgba(10,35,66,0.45);
  z-index: 9999;
  transition: transform 0.3s, box-shadow 0.3s;
}
.map-float:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 28px rgba(10,35,66,0.6);
}

/* ── PRODUCT PAGE ────────────────────────────────────────── */
.page-hero {
  background: var(--navy);
  padding: 64px 0 48px;
  color: white;
}
.page-hero .breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 0.84rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 20px;
}
.page-hero .breadcrumb a { color: var(--orange2); }
.page-hero .breadcrumb span { color: rgba(255,255,255,0.4); }
.page-hero h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; }
.page-hero p { color: rgba(255,255,255,0.75); margin-top: 12px; font-size: 1.05rem; max-width: 560px; }

.product-detail { padding: 80px 0; }
.product-detail-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: start;
}
.product-gallery-main {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 12px;
  box-shadow: var(--shadow);
}
.product-gallery-main img { width: 100%; max-height: 400px; object-fit: cover; }
.product-gallery-thumbs {
  display: flex;
  gap: 10px;
}
.product-gallery-thumbs img {
  width: calc(33.33% - 7px);
  height: 100px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.2s;
}
.product-gallery-thumbs img:hover,
.product-gallery-thumbs img.active { border-color: var(--orange); }

.product-info h2 { font-size: 1.9rem; font-weight: 800; color: var(--navy); margin-bottom: 12px; }
.product-info > p { color: var(--gray); line-height: 1.75; margin-bottom: 24px; }
.product-features-list { margin: 0 0 28px; }
.product-features-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.93rem;
  color: var(--dark);
}
.product-features-list li:last-child { border-bottom: none; }
.product-features-list li svg { flex-shrink: 0; color: var(--orange); margin-top: 2px; }
.product-cta-box {
  background: var(--light);
  border-radius: 12px;
  padding: 24px;
  border: 1px solid var(--border);
}
.product-cta-box h4 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.product-cta-box p { font-size: 0.88rem; color: var(--gray); margin-bottom: 16px; }
.product-cta-box .btn { width: 100%; justify-content: center; margin-bottom: 10px; }

.related-products { padding: 80px 0; background: var(--light); }

/* ── ANIMATIONS ──────────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .topbar .topbar-left { display: none; }

  .nav-menu { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: white; padding: 16px 24px 24px; box-shadow: 0 8px 24px rgba(0,0,0,0.1); gap: 4px; }
  .nav-menu.open { display: flex; }
  .nav-cta { margin-left: 0; margin-top: 8px; }
  .nav-dropdown { position: static; box-shadow: none; border: none; opacity: 1; visibility: visible; transform: none; padding-left: 12px; background: var(--light); border-radius: 8px; margin: 4px 0; }
  .hamburger { display: flex; }

  .hero { min-height: 100svh; }
  .hero-stats .container { flex-wrap: wrap; gap: 20px; }
  .stat-item { min-width: 45%; }

  .about-grid { grid-template-columns: 1fr; }
  .about-images { height: 320px; margin-bottom: 32px; }
  .contact-grid { grid-template-columns: 1fr; }
  .product-detail-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item:first-child { grid-column: span 2; }
  .products-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .about-features { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-content h1 { font-size: 2rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .features-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item:first-child { grid-column: span 1; }
}

/* ── BLOG LIST PAGE ──────────────────────────────────────── */
.blog-listing { padding: 80px 0; background: var(--white); }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.blog-card {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.12);
  border-color: var(--orange);
}
.blog-card-img {
  height: 200px;
  overflow: hidden;
}
.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.blog-card:hover .blog-card-img img { transform: scale(1.07); }
.blog-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.blog-card-cat {
  background: rgba(232,97,26,0.12);
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.blog-card-date {
  font-size: 0.78rem;
  color: var(--gray);
}
.blog-card-body h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.4;
}
.blog-card-body p {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 18px;
}
.blog-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--orange);
  transition: gap 0.2s;
}
.blog-card-link:hover { gap: 10px; }

/* ── BLOG POST PAGE ──────────────────────────────────────── */
.blog-post-layout {
  padding: 80px 0;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 56px;
  align-items: start;
}
.blog-post-content {}
.blog-post-content h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy);
  margin: 40px 0 16px;
}
.blog-post-content h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin: 28px 0 12px;
}
.blog-post-content p {
  color: #374151;
  line-height: 1.8;
  margin-bottom: 18px;
  font-size: 1rem;
}
.blog-post-content ul, .blog-post-content ol {
  margin: 0 0 18px 24px;
  list-style: disc;
  color: #374151;
  line-height: 1.8;
  font-size: 1rem;
}
.blog-post-content ol { list-style: decimal; }
.blog-post-content li { margin-bottom: 8px; }
.blog-post-content img {
  width: 100%;
  border-radius: 10px;
  margin: 24px 0;
  box-shadow: var(--shadow);
}
.blog-post-content blockquote {
  border-left: 4px solid var(--orange);
  padding: 16px 24px;
  background: var(--light);
  border-radius: 0 10px 10px 0;
  margin: 24px 0;
  font-style: italic;
  color: var(--navy);
}
.blog-post-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}
.blog-post-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--gray);
}
.blog-post-cover {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 40px;
  box-shadow: var(--shadow);
  max-height: 420px;
  object-fit: cover;
}
.blog-post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.blog-post-tag {
  background: var(--light);
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 6px;
  border: 1px solid var(--border);
}

/* Sidebar */
.blog-sidebar {}
.sidebar-widget {
  background: var(--light);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 24px;
  border: 1px solid var(--border);
}
.sidebar-widget h4 {
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--navy);
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--orange);
}
.sidebar-posts { display: flex; flex-direction: column; gap: 16px; }
.sidebar-post {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.sidebar-post:last-child { border-bottom: none; padding-bottom: 0; }
.sidebar-post img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}
.sidebar-post a {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.4;
  display: block;
  margin-bottom: 4px;
  transition: color 0.2s;
}
.sidebar-post a:hover { color: var(--orange); }
.sidebar-post span { font-size: 0.75rem; color: var(--gray); }
.sidebar-cats { display: flex; flex-direction: column; gap: 8px; }
.sidebar-cat {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 12px;
  background: white;
  border-radius: 6px;
  border: 1px solid var(--border);
  font-size: 0.87rem;
  font-weight: 500;
  color: var(--dark);
  transition: var(--transition);
  text-decoration: none;
}
.sidebar-cat:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: rgba(232,97,26,0.04);
}
.sidebar-cat span {
  background: var(--orange);
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 999px;
}
.sidebar-cta {
  background: var(--navy);
  border-radius: 12px;
  padding: 28px 24px;
  text-align: center;
  color: white;
}
.sidebar-cta h4 {
  color: white;
  font-size: 1rem;
  margin-bottom: 10px;
  border-bottom: none;
  padding-bottom: 0;
}
.sidebar-cta p { font-size: 0.85rem; color: rgba(255,255,255,0.7); margin-bottom: 16px; }
.sidebar-cta .btn { width: 100%; justify-content: center; }

/* Home blog preview */
.home-blog { padding: 80px 0; background: var(--light); }

/* Full gallery page */
.gallery-full { padding: 80px 0; }
.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

/* About full page */
.about-full { padding: 80px 0; }
.about-full-hero {
  background: linear-gradient(135deg, var(--navy), var(--navy2));
  padding: 64px 0;
  color: white;
  margin-bottom: 64px;
}
.about-full-hero h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; }
.about-full-hero p { color: rgba(255,255,255,0.75); margin-top: 14px; max-width: 560px; font-size: 1.05rem; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.team-card {
  text-align: center;
  background: var(--white);
  border-radius: 12px;
  padding: 32px 24px;
  border: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.team-card-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--orange), var(--orange2));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: white;
}
.team-card h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.team-card p { font-size: 0.85rem; color: var(--gray); }

/* Contact full page */
.contact-full { padding: 80px 0; }

@media (max-width: 1024px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-post-layout { grid-template-columns: 1fr; }
  .blog-sidebar { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
  .gallery-masonry { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .blog-grid { grid-template-columns: 1fr; }
  .blog-sidebar { grid-template-columns: 1fr; }
  .gallery-masonry { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .gallery-masonry { grid-template-columns: 1fr; }
}
