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

:root {
  --dark: #111827;
  --text: #1f2937;
  --muted: #6b7280;
  --light: #f8fafc;
  --white: #ffffff;
  --primary: #b80b0b;
  --primary-dark: #8a0808;
  --gold-soft: #f5b3b3;
  --border: rgba(17, 24, 39, 0.1);
  --shadow: 0 25px 70px rgba(15, 23, 42, 0.14);
  --radius: 28px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background: #fffaf3;
  color: var(--text);
  line-height: 1.7;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1180px, calc(100% - 34px));
  margin: 0 auto;
}

/* HEADER */
.site-header {
  position: fixed;
  top: 18px;
  left: 0;
  width: 100%;
  z-index: 50;
  padding: 0 18px;
}

.navbar {
  width: min(1180px, 100%);
  margin: 0 auto;
  min-height: 76px;
  padding: 0 22px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(22px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 18px 55px rgba(15, 23, 42, 0.15);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo,
.footer-logo {
  font-size: 25px;
  font-weight: 800;
  letter-spacing: -0.8px;
  color: var(--dark);
}

.logo span,
.footer-logo span {
  color: var(--primary);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-menu ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-menu ul li a {
  display: inline-flex;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  color: #374151;
  transition: 0.25s ease;
}

.nav-menu ul li a:hover {
  background: rgba(184, 134, 11, 0.12);
  color: var(--primary-dark);
}

.social-icons {
  display: flex;
  gap: 9px;
}

.social-icons a,
.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #111827;
  color: #fff;
  transition: 0.25s ease;
}

.social-icons a:hover,
.footer-social a:hover {
  background: var(--primary);
  transform: translateY(-3px);
}

.menu-toggle {
  display: none;
  border: none;
  background: #111827;
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
}

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 150px 20px 80px;
}

.hero-slider,
.slide,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.slide {
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 1.2s ease, transform 6s ease;
}

.slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero-overlay {
  background:
    linear-gradient(120deg, rgba(17, 24, 39, 0.85), rgba(17, 24, 39, 0.48)),
    radial-gradient(circle at top right, rgba(184, 134, 11, 0.42), transparent 38%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 4;
  width: min(920px, 100%);
  text-align: center;
  color: #fff;
}

.hero-badge,
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border-radius: 999px;
  background: rgba(184, 134, 11, 0.14);
  color: var(--primary);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.hero-badge {
  color: #ffe7a5;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.hero h1 {
  margin-top: 24px;
  font-size: clamp(42px, 7vw, 82px);
  line-height: 1.03;
  letter-spacing: -3px;
  font-weight: 800;
}

.hero p {
  width: min(710px, 100%);
  margin: 24px auto 0;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.82);
}

.hero-buttons {
  margin-top: 34px;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 25px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 800;
  transition: 0.25s ease;
}

.btn-primary {
  color: #ffffff;
  background: linear-gradient(135deg, #d41717, #f63434);
  box-shadow: 0 18px 38px rgba(184, 134, 11, 0.35);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 46px rgba(184, 134, 11, 0.45);
}

.btn-light {
  color: #111827;
  background: rgba(255, 255, 255, 0.94);
}

.btn-light:hover {
  background: #fff;
  transform: translateY(-3px);
}

.slider-dots {
  position: absolute;
  z-index: 5;
  left: 50%;
  bottom: 35px;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.dot {
  width: 34px;
  height: 7px;
  border: none;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.38);
  cursor: pointer;
  transition: 0.25s ease;
}

.dot.active {
  width: 58px;
  background: #fff;
}

/* ABOUT */
.about-section {
  padding: 110px 0;
  background:
    radial-gradient(circle at top left, rgba(184, 134, 11, 0.12), transparent 32%),
    #fffaf3;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 56px;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image::before {
  content: "";
  position: absolute;
  inset: 26px -18px -18px 26px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #d41717, #111827);
  z-index: 0;
}

.about-image img {
  position: relative;
  z-index: 1;
  height: 560px;
  width: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.about-content h2,
.section-heading h2,
.cta-box h2 {
  margin-top: 16px;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: -1.8px;
  color: var(--dark);
}

.about-content p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 16px;
}

.about-stats {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.about-stats div {
  padding: 22px 16px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 22px;
  box-shadow: 0 15px 35px rgba(15, 23, 42, 0.07);
}

.about-stats strong {
  display: block;
  font-size: 26px;
  color: var(--primary);
}

.about-stats span {
  display: block;
  margin-top: 3px;
  font-size: 13px;
  color: var(--muted);
  font-weight: 700;
}

/* TIPS */
.tips-section {
  padding: 105px 0;
  background: #111827;
  color: #fff;
}

.section-heading {
  text-align: center;
  width: min(760px, 100%);
  margin: 0 auto 48px;
}

.tips-section .section-heading h2 {
  color: #fff;
}

.section-heading p {
  margin-top: 14px;
  color: var(--muted);
}

.tips-section .section-heading p {
  color: rgba(255, 255, 255, 0.68);
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.tip-card {
  position: relative;
  padding: 34px;
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,0.09), rgba(255,255,255,0.04));
  border: 1px solid rgba(255, 255, 255, 0.12);
  overflow: hidden;
  transition: 0.25s ease;
}

.tip-card::after {
  content: "";
  position: absolute;
  width: 160px;
  height: 160px;
  right: -70px;
  top: -70px;
  border-radius: 50%;
  background: rgba(184, 134, 11, 0.22);
}

.tip-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 35, 35, 0.741);
}

.tip-icon {
  width: 62px;
  height: 62px;
  border-radius: 20px;
  background: linear-gradient(135deg, #d41717, #8a0808);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 24px;
}

.tip-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.tip-card p {
  color: rgba(255, 255, 255, 0.68);
}

/* BLOG */
.blog-section {
  padding: 110px 0;
  background: #fffaf3;
}

.blog-heading {
  width: 100%;
  text-align: left;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}

.view-all {
  font-weight: 800;
  color: var(--primary-dark);
}

.blog-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 24px;
}

.blog-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
  transition: 0.25s ease;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.blog-img {
  position: relative;
  height: 235px;
  overflow: hidden;
}

.blog-card.featured .blog-img {
  height: 330px;
}

.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s ease;
}

.blog-card:hover .blog-img img {
  transform: scale(1.08);
}

.category {
  position: absolute;
  top: 18px;
  left: 18px;
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(17, 24, 39, 0.82);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}

.blog-content {
  padding: 26px;
}

.date {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  font-size: 13px;
  color: var(--muted);
  font-weight: 700;
}

.blog-content h3 {
  margin-top: 12px;
  font-size: 22px;
  line-height: 1.25;
  color: var(--dark);
  letter-spacing: -0.6px;
}

.blog-card.featured .blog-content h3 {
  font-size: 28px;
}

.blog-content p {
  margin-top: 13px;
  color: var(--muted);
}

.read-more {
  display: inline-flex;
  margin-top: 18px;
  font-weight: 800;
  color: var(--primary-dark);
}

/* CTA */
.cta-section {
  padding: 0 0 105px;
  background: #fffaf3;
}

.cta-box {
  padding: 46px;
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(17, 24, 39, 0.96), rgba(41, 22, 22, 0.92)),
    url('https://images.unsplash.com/photo-1519389950473-47ba0277781c?auto=format&fit=crop&w=1400&q=80');
  background-size: cover;
  background-position: center;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  box-shadow: var(--shadow);
}

.cta-box h2 {
  color: #fff;
  max-width: 720px;
}

.cta-box p {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.72);
}

/* FOOTER */
.footer {
  background: #0b1120;
  color: #fff;
  padding-top: 74px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 0.7fr 1fr;
  gap: 34px;
  padding-bottom: 52px;
}

.footer-logo {
  color: #fff;
}

.footer-brand p {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.64);
  max-width: 360px;
}

.footer-social {
  margin-top: 22px;
  display: flex;
  gap: 10px;
}

.footer-social a {
  background: rgba(255, 255, 255, 0.08);
}

.footer-links h4,
.footer-contact h4 {
  margin-bottom: 18px;
  font-size: 18px;
}

.footer-links a {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.64);
  transition: 0.25s ease;
}

.footer-links a:hover {
  color: #fff;
  transform: translateX(4px);
}

.footer-contact p {
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.64);
}

.footer-contact i {
  color: var(--primary);
  margin-right: 8px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  padding: 22px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 14px;
}

/* RESPONSIVE */
@media (max-width: 980px) {
  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav-menu {
    position: absolute;
    left: 18px;
    right: 18px;
    top: 88px;
    padding: 22px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
    display: none;
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-menu ul {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .nav-menu ul li a {
    width: 100%;
    padding: 13px 14px;
  }

  .social-icons a {
    background: var(--dark);
  }

  .about-grid,
  .blog-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .about-image img {
    height: 420px;
  }

  .tips-grid {
    grid-template-columns: 1fr;
  }

  .blog-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .cta-box {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .site-header {
    top: 10px;
    padding: 0 10px;
  }

  .navbar {
    min-height: 66px;
    padding: 0 14px;
  }

  .logo {
    font-size: 21px;
  }

  .hero {
    min-height: 92vh;
    padding-top: 130px;
  }

  .hero h1 {
    letter-spacing: -1.8px;
  }

  .hero p {
    font-size: 16px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .about-section,
  .tips-section,
  .blog-section {
    padding: 72px 0;
  }

  .about-image::before {
    display: none;
  }

  .about-image img {
    height: 340px;
    border-radius: 24px;
  }

  .about-stats {
    grid-template-columns: 1fr;
  }

  .tip-card,
  .blog-card,
  .cta-box {
    border-radius: 24px;
  }

  .blog-img,
  .blog-card.featured .blog-img {
    height: 240px;
  }

  .cta-section {
    padding-bottom: 72px;
  }

  .cta-box {
    padding: 30px;
  }

  .footer {
    padding-top: 54px;
  }
}
/* BLOG DETAIL PAGE */
.blog-detail-hero {
  position: relative;
  min-height: 720px;
  padding: 170px 0 90px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.blog-detail-bg,
.blog-detail-overlay {
  position: absolute;
  inset: 0;
}

.blog-detail-bg {
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
}

.blog-detail-overlay {
  background:
    linear-gra  dient(180deg, rgba(17, 24, 39, 0.45), rgba(17, 24, 39, 0.94)),
    radial-gradient(circle at top right, rgba(184, 11, 11, 0.45), transparent 36%);
  z-index: 1;
}

.blog-detail-hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 24px;
  padding: 11px 17px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 800;
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(16px);
  transition: 0.25s ease;
}

.back-link:hover {
  background: #fff;
  color: #111827;
  transform: translateY(-2px);
}

.article-meta-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 700;
}

.article-meta-top span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.article-category {
  padding: 8px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, #d41717, #8a0808);
  color: #fff !important;
  box-shadow: 0 14px 30px rgba(184, 134, 11, 0.35);
}

.blog-detail-hero h1 {
  width: min(920px, 100%);
  font-size: clamp(42px, 6.5vw, 78px);
  line-height: 1.04;
  letter-spacing: -3px;
  font-weight: 800;
}

.blog-detail-hero p {
  width: min(760px, 100%);
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

.article-author {
  margin-top: 34px;
  display: inline-flex;
  align-items: center;
  gap: 13px;
  padding: 12px 16px 12px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(18px);
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d41717, #8a0808);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  letter-spacing: -0.5px;
}

.author-avatar.large {
  width: 74px;
  height: 74px;
  font-size: 22px;
  flex: 0 0 74px;
}

.article-author strong {
  display: block;
  line-height: 1.2;
}

.article-author span {
  display: block;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

/* MAIN LAYOUT */
.blog-detail-main {
  padding: 90px 0;
  background:
    radial-gradient(circle at top left, rgba(184, 11, 11, 0.1), transparent 30%),
    #fffaf3;
}

.blog-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 34px;
  align-items: start;
}

.article-content {
  padding: 46px;
  border-radius: 34px;
  background: #fff;
  border: 1px solid rgba(17, 24, 39, 0.08);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
}

.article-content p {
  margin-bottom: 22px;
  color: #4b5563;
  font-size: 17px;
  line-height: 1.9;
}

.article-content h2 {
  margin: 42px 0 18px;
  color: #111827;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.16;
  letter-spacing: -1.2px;
}

.article-intro-card {
  position: relative;
  padding: 30px;
  margin-bottom: 34px;
  border-radius: 26px;
  background:
    linear-gradient(135deg, rgba(184, 11, 11, 0.13), rgba(39, 17, 17, 0.04));
  border: 1px solid rgba(184, 134, 11, 0.18);
}

.article-intro-card i {
  width: 52px;
  height: 52px;
  margin-bottom: 16px;
  border-radius: 18px;
  background: #111827;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.article-intro-card p {
  margin: 0;
  color: #111827;
  font-weight: 700;
  font-size: 19px;
  line-height: 1.7;
}

.article-image-box {
  margin: 36px 0;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 22px 50px rgba(15, 23, 42, 0.14);
}

.article-image-box img {
  width: 100%;
  height: 430px;
  object-fit: cover;
}

.article-list {
  margin: 24px 0 28px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 13px;
}

.article-list li {
  position: relative;
  padding: 16px 18px 16px 48px;
  border-radius: 18px;
  background: #fffaf3;
  color: #374151;
  border: 1px solid rgba(184, 134, 11, 0.14);
  font-weight: 600;
}

.article-list li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 18px;
  top: 16px;
  color: var(--primary);
}

.article-content blockquote {
  margin: 38px 0;
  padding: 34px;
  border-radius: 28px;
  background: #111827;
  color: #fff;
  font-size: 22px;
  line-height: 1.7;
  font-weight: 700;
  letter-spacing: -0.4px;
  border-left: 6px solid var(--primary);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.18);
}

.article-tags {
  margin-top: 42px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.article-tags a {
  display: inline-flex;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(184, 134, 11, 0.1);
  color: var(--primary-dark);
  font-size: 13px;
  font-weight: 800;
  transition: 0.25s ease;
}

.article-tags a:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}

.article-share {
  margin-top: 32px;
  padding: 22px;
  border-radius: 24px;
  background: #fffaf3;
  border: 1px solid rgba(184, 134, 11, 0.14);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.article-share span {
  font-weight: 800;
  color: #111827;
}

.article-share div {
  display: flex;
  gap: 10px;
}

.article-share a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #111827;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 0.25s ease;
}

.article-share a:hover {
  background: var(--primary);
  transform: translateY(-3px);
}

/* AUTHOR BOX */
.author-box {
  margin-top: 32px;
  padding: 28px;
  border-radius: 28px;
  background: linear-gradient(135deg, #111827, #2b2111);
  color: #fff;
  display: flex;
  gap: 18px;
  align-items: center;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.18);
}

.author-box h3 {
  font-size: 22px;
  margin-bottom: 6px;
}

.author-box p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.7;
}

/* PREV NEXT */
.post-navigation {
  margin-top: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.post-nav-card {
  padding: 24px;
  border-radius: 26px;
  background: #fff;
  border: 1px solid rgba(17, 24, 39, 0.08);
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.07);
  transition: 0.25s ease;
}

.post-nav-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
}

.post-nav-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--primary-dark);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.post-nav-card strong {
  display: block;
  color: #111827;
  line-height: 1.35;
  font-size: 17px;
}

.post-nav-card.right {
  text-align: right;
}

/* SIDEBAR */
.blog-sidebar {
  position: sticky;
  top: 120px;
  display: grid;
  gap: 22px;
}

.sidebar-widget {
  padding: 26px;
  border-radius: 28px;
  background: #fff;
  border: 1px solid rgba(17, 24, 39, 0.08);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
}

.sidebar-widget h3 {
  margin-bottom: 18px;
  color: #111827;
  font-size: 22px;
  letter-spacing: -0.6px;
}

.search-widget form,
.newsletter-widget form {
  display: flex;
  gap: 10px;
}

.search-widget input,
.newsletter-widget input {
  width: 100%;
  min-height: 50px;
  border: 1px solid rgba(17, 24, 39, 0.1);
  border-radius: 16px;
  padding: 0 14px;
  outline: none;
  font-family: inherit;
  background: #fffaf3;
}

.search-widget button {
  width: 52px;
  height: 50px;
  border: none;
  border-radius: 16px;
  background: #111827;
  color: #fff;
  cursor: pointer;
  transition: 0.25s ease;
}

.search-widget button:hover,
.newsletter-widget button:hover {
  background: var(--primary);
}

.category-list {
  display: grid;
  gap: 10px;
}

.category-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 15px;
  border-radius: 16px;
  background: #fffaf3;
  color: #374151;
  font-weight: 800;
  transition: 0.25s ease;
}

.category-list a:hover {
  background: #111827;
  color: #fff;
  transform: translateX(4px);
}

.category-list strong {
  color: var(--primary);
}

.mini-post {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 13px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(17, 24, 39, 0.08);
}

.mini-post:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.mini-post img {
  width: 78px;
  height: 78px;
  object-fit: cover;
  border-radius: 18px;
}

.mini-post strong {
  display: block;
  color: #111827;
  font-size: 14px;
  line-height: 1.35;
  margin-bottom: 6px;
  transition: 0.25s ease;
}

.mini-post:hover strong {
  color: var(--primary-dark);
}

.mini-post span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.newsletter-widget {
  background:
    linear-gradient(135deg, rgba(17, 24, 39, 0.96), rgba(48, 36, 15, 0.95)),
    url('https://images.unsplash.com/photo-1519389950473-47ba0277781c?auto=format&fit=crop&w=900&q=80');
  background-size: cover;
  background-position: center;
  color: #fff;
}

.newsletter-widget h3 {
  color: #fff;
  margin-top: 12px;
}

.newsletter-widget p {
  color: rgba(255, 255, 255, 0.68);
  margin-bottom: 18px;
}

.newsletter-widget form {
  flex-direction: column;
}

.newsletter-widget input {
  background: rgba(255, 255, 255, 0.95);
}

.newsletter-widget button {
  min-height: 50px;
  border: none;
  border-radius: 16px;
  background: linear-gradient(135deg, #d41717, #8a0808);
  color: #fff;
  font-weight: 900;
  cursor: pointer;
  transition: 0.25s ease;
}

/* RELATED POSTS */
.related-posts {
  padding: 0 0 110px;
  background: #fffaf3;
}

.related-grid {
  grid-template-columns: repeat(3, 1fr);
}

/* RESPONSIVE BLOG DETAIL */
@media (max-width: 1080px) {
  .blog-layout {
    grid-template-columns: 1fr;
  }

  .blog-sidebar {
    position: static;
    grid-template-columns: repeat(2, 1fr);
  }

  .newsletter-widget {
    grid-column: 1 / -1;
  }

  .related-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .blog-detail-hero {
    min-height: auto;
    padding: 135px 0 70px;
  }

  .blog-detail-hero h1 {
    letter-spacing: -1.7px;
  }

  .blog-detail-hero p {
    font-size: 16px;
  }

  .article-meta-top {
    gap: 9px;
  }

  .blog-detail-main {
    padding: 56px 0;
  }

  .article-content {
    padding: 24px;
    border-radius: 26px;
  }

  .article-content p {
    font-size: 16px;
  }

  .article-image-box img {
    height: 260px;
  }

  .article-content blockquote {
    padding: 24px;
    font-size: 18px;
    border-radius: 22px;
  }

  .article-share,
  .author-box {
    flex-direction: column;
    align-items: flex-start;
  }

  .post-navigation {
    grid-template-columns: 1fr;
  }

  .post-nav-card.right {
    text-align: left;
  }

  .blog-sidebar {
    grid-template-columns: 1fr;
  }

  .related-grid {
    grid-template-columns: 1fr;
  }
}
/* INNER PAGE HERO */
.inner-hero {
  position: relative;
  min-height: 620px;
  padding: 170px 0 90px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.inner-hero-bg,
.inner-hero-overlay {
  position: absolute;
  inset: 0;
}

.inner-hero-bg {
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
}

.inner-hero-overlay {
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(17, 24, 39, 0.35), rgba(17, 24, 39, 0.94)),
    radial-gradient(circle at top right, rgba(184, 134, 11, 0.42), transparent 35%);
}

.inner-hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
}

.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(16px);
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 700;
}

.breadcrumb a {
  color: #fff;
}

.breadcrumb i {
  font-size: 11px;
  opacity: 0.7;
}

.inner-hero h1 {
  width: min(930px, 100%);
  margin-top: 22px;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 1.04;
  letter-spacing: -3px;
  font-weight: 800;
}

.inner-hero p {
  width: min(760px, 100%);
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

/* ABOUT PAGE */
.about-page-section {
  padding: 110px 0;
  background:
    radial-gradient(circle at top left, rgba(184, 134, 11, 0.1), transparent 30%),
    #fffaf3;
}

.about-page-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 58px;
  align-items: center;
}

.about-page-content h2 {
  margin-top: 16px;
  color: var(--dark);
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.08;
  letter-spacing: -1.8px;
}

.about-page-content p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 17px;
}

.about-page-image {
  position: relative;
}

.about-page-image::before {
  content: "";
  position: absolute;
  inset: 26px 26px -22px -22px;
  border-radius: 32px;
  background: linear-gradient(135deg, #d4a017, #111827);
  z-index: 0;
}

.about-page-image img {
  position: relative;
  z-index: 1;
  height: 590px;
  width: 100%;
  object-fit: cover;
  border-radius: 32px;
  box-shadow: var(--shadow);
}

.signature-box {
  margin-top: 34px;
  padding: 22px 24px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(17, 24, 39, 0.08);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.signature-box strong {
  display: block;
  color: #111827;
  font-size: 20px;
}

.signature-box span {
  display: block;
  color: var(--muted);
  font-size: 14px;
  margin-top: 3px;
}

.signature-box i {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  background: linear-gradient(135deg, #d4a017, #8a6408);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

/* VALUES */
.values-section {
  padding: 105px 0;
  background: #111827;
  color: #fff;
}

.values-section .section-heading h2 {
  color: #fff;
}

.values-section .section-heading p {
  color: rgba(255, 255, 255, 0.66);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.value-card {
  padding: 30px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.09), rgba(255,255,255,0.04));
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: 0.25s ease;
}

.value-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 160, 23, 0.55);
}

.value-icon {
  width: 62px;
  height: 62px;
  margin-bottom: 22px;
  border-radius: 20px;
  background: linear-gradient(135deg, #d4a017, #8a6408);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 23px;
}

.value-card h3 {
  font-size: 21px;
  margin-bottom: 10px;
}

.value-card p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
}

/* MISSION */
.mission-section {
  padding: 110px 0;
  background: #fffaf3;
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.mission-card {
  padding: 44px;
  border-radius: 34px;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
}

.mission-card.dark {
  background:
    linear-gradient(135deg, rgba(17, 24, 39, 0.96), rgba(49, 36, 13, 0.95)),
    url('https://images.unsplash.com/photo-1519389950473-47ba0277781c?auto=format&fit=crop&w=1200&q=80');
  background-size: cover;
  background-position: center;
  color: #fff;
}

.mission-card.light {
  background: #fff;
  border: 1px solid rgba(17, 24, 39, 0.08);
}

.mission-card h2 {
  margin-top: 16px;
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.12;
  letter-spacing: -1.4px;
}

.mission-card.light h2 {
  color: var(--dark);
}

.mission-card p {
  margin-top: 18px;
  font-size: 16px;
}

.mission-card.dark p {
  color: rgba(255, 255, 255, 0.72);
}

.mission-card.light p {
  color: var(--muted);
}

/* LEGAL PAGE */
.legal-main {
  padding: 90px 0 110px;
  background:
    radial-gradient(circle at top left, rgba(184, 134, 11, 0.1), transparent 30%),
    #fffaf3;
}

.legal-layout {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 30px;
  align-items: start;
}

.legal-sidebar {
  position: sticky;
  top: 120px;
}

.legal-sidebar-box {
  padding: 24px;
  border-radius: 28px;
  background: #fff;
  border: 1px solid rgba(17, 24, 39, 0.08);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
}

.legal-sidebar-box h3 {
  margin-bottom: 16px;
  color: #111827;
  font-size: 21px;
  letter-spacing: -0.5px;
}

.legal-sidebar-box a {
  display: block;
  padding: 13px 14px;
  border-radius: 16px;
  color: #4b5563;
  font-weight: 800;
  font-size: 14px;
  transition: 0.25s ease;
}

.legal-sidebar-box a:hover {
  background: #111827;
  color: #fff;
  transform: translateX(4px);
}

.legal-content-card {
  padding: 46px;
  border-radius: 34px;
  background: #fff;
  border: 1px solid rgba(17, 24, 39, 0.08);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
}

.legal-notice {
  display: flex;
  gap: 16px;
  padding: 22px;
  border-radius: 24px;
  background: rgba(184, 134, 11, 0.1);
  border: 1px solid rgba(184, 134, 11, 0.2);
  margin-bottom: 26px;
}

.legal-notice i {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  border-radius: 16px;
  background: #111827;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.legal-notice p {
  margin: 0;
  color: #374151;
  font-weight: 700;
  line-height: 1.7;
}

.legal-date {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  padding: 10px 15px;
  border-radius: 999px;
  background: #fffaf3;
  border: 1px solid rgba(184, 134, 11, 0.14);
  font-size: 14px;
}

.legal-date span {
  color: var(--muted);
  font-weight: 700;
}

.legal-date strong {
  color: var(--primary-dark);
}

.legal-content-card section {
  scroll-margin-top: 130px;
  padding-top: 20px;
  margin-top: 20px;
  border-top: 1px solid rgba(17, 24, 39, 0.08);
}

.legal-content-card section:first-of-type {
  border-top: none;
}

.legal-content-card h2 {
  margin-bottom: 16px;
  color: #111827;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.16;
  letter-spacing: -1.1px;
}

.legal-content-card p {
  margin-bottom: 18px;
  color: #4b5563;
  font-size: 16px;
  line-height: 1.9;
}

.legal-content-card ul {
  list-style: none;
  padding: 0;
  margin: 22px 0;
  display: grid;
  gap: 12px;
}

.legal-content-card li {
  position: relative;
  padding: 15px 18px 15px 48px;
  border-radius: 18px;
  background: #fffaf3;
  color: #374151;
  border: 1px solid rgba(184, 134, 11, 0.14);
  font-weight: 600;
}

.legal-content-card li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 18px;
  top: 15px;
  color: var(--primary);
}

.legal-contact-box {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.legal-contact-box div {
  padding: 22px;
  border-radius: 22px;
  background: #111827;
  color: #fff;
}

.legal-contact-box span {
  display: block;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.legal-contact-box strong {
  display: block;
  font-size: 16px;
}

/* RESPONSIVE INNER PAGES */
@media (max-width: 1080px) {
  .about-page-grid,
  .mission-grid,
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .legal-sidebar {
    position: static;
  }

  .legal-sidebar-box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .legal-sidebar-box h3 {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .inner-hero {
    min-height: auto;
    padding: 135px 0 70px;
  }

  .inner-hero h1 {
    letter-spacing: -1.8px;
  }

  .inner-hero p {
    font-size: 16px;
  }

  .about-page-section,
  .values-section,
  .mission-section,
  .legal-main {
    padding: 70px 0;
  }

  .about-page-image::before {
    display: none;
  }

  .about-page-image img {
    height: 350px;
    border-radius: 24px;
  }

  .values-grid,
  .legal-sidebar-box,
  .legal-contact-box {
    grid-template-columns: 1fr;
  }

  .mission-card,
  .legal-content-card {
    padding: 26px;
    border-radius: 26px;
  }

  .legal-notice {
    flex-direction: column;
  }
}
/* UPDATED ABOUT PROFILE PAGE */
.about-profile-hero .inner-hero-overlay {
  background:
    linear-gradient(180deg, rgba(17, 24, 39, 0.28), rgba(17, 24, 39, 0.95)),
    radial-gradient(circle at top right, rgba(184, 134, 11, 0.46), transparent 34%);
}

/* PROFILE OVERVIEW */
.profile-overview-section {
  padding: 110px 0;
  background:
    radial-gradient(circle at top left, rgba(184, 134, 11, 0.1), transparent 32%),
    #fffaf3;
}

.profile-overview-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 34px;
  align-items: start;
}

.profile-main-card {
  padding: 46px;
  border-radius: 34px;
  background: #fff;
  border: 1px solid rgba(17, 24, 39, 0.08);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
}

.profile-main-card h2 {
  margin-top: 16px;
  margin-bottom: 22px;
  color: var(--dark);
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.08;
  letter-spacing: -1.8px;
}

.profile-main-card p {
  margin-bottom: 20px;
  color: #4b5563;
  font-size: 17px;
  line-height: 1.9;
}

.profile-highlight {
  margin-top: 34px;
  padding: 30px;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(17, 24, 39, 0.96), rgba(49, 36, 13, 0.95));
  color: #fff;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.16);
}

.profile-highlight i {
  width: 52px;
  height: 52px;
  margin-bottom: 16px;
  border-radius: 18px;
  background: linear-gradient(135deg, #d4a017, #8a6408);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.profile-highlight p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
  font-size: 19px;
  line-height: 1.7;
}

.profile-info-card {
  position: sticky;
  top: 120px;
  padding: 28px;
  border-radius: 34px;
  background:
    linear-gradient(180deg, #111827, #221b10);
  color: #fff;
  box-shadow: 0 22px 55px rgba(15, 23, 42, 0.2);
}

.profile-avatar-box {
  text-align: center;
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.profile-avatar {
  width: 92px;
  height: 92px;
  margin: 0 auto 16px;
  border-radius: 28px;
  background: linear-gradient(135deg, #d4a017, #8a6408);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  font-weight: 900;
  letter-spacing: -1px;
  box-shadow: 0 18px 35px rgba(184, 134, 11, 0.28);
}

.profile-avatar-box h3 {
  font-size: 25px;
  letter-spacing: -0.7px;
}

.profile-avatar-box p {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.62);
}

.profile-info-list {
  display: grid;
  gap: 14px;
}

.profile-info-list div {
  padding: 17px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.profile-info-list span {
  display: block;
  margin-bottom: 5px;
  color: rgba(255, 255, 255, 0.54);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.profile-info-list strong {
  display: block;
  color: #fff;
  font-size: 15px;
  line-height: 1.5;
}

/* PROFESSION SECTION */
.profession-section {
  padding: 110px 0;
  background: #111827;
  color: #fff;
}

.profession-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 58px;
  align-items: center;
}

.profession-image {
  position: relative;
}

.profession-image::before {
  content: "";
  position: absolute;
  inset: 26px -18px -18px 26px;
  border-radius: 32px;
  background: linear-gradient(135deg, #d41717, #ffbdbd);
  opacity: 0.9;
}

.profession-image img {
  position: relative;
  z-index: 1;
  height: 560px;
  width: 100%;
  object-fit: cover;
  border-radius: 32px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
}

.profession-content h2 {
  margin-top: 16px;
  color: #fff;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.08;
  letter-spacing: -1.8px;
}

.profession-content p {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
  line-height: 1.9;
}

/* CAREER FOCUS */
.career-focus-section {
  padding: 110px 0;
  background: #fff3f3;
}

.career-focus-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.career-card {
  padding: 30px;
  border-radius: 28px;
  background: #fff;
  border: 1px solid rgba(17, 24, 39, 0.08);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
  transition: 0.25s ease;
}

.career-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.13);
}

.career-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 22px;
  border-radius: 20px;
  background: linear-gradient(135deg, #d4a017, #8a6408);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.career-card h3 {
  margin-bottom: 10px;
  color: #111827;
  font-size: 21px;
  line-height: 1.25;
}

.career-card p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

/* CORPORATE PROFILE */
.corporate-profile-section {
  padding: 0 0 110px;
  background: #fffaf3;
}

.corporate-profile-box {
  padding: 48px;
  border-radius: 36px;
  background:
    linear-gradient(135deg, rgba(17, 24, 39, 0.96), rgba(47, 35, 14, 0.94)),
    url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?auto=format&fit=crop&w=1600&q=80');
  background-size: cover;
  background-position: center;
  color: #fff;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 34px;
  align-items: center;
}

.corporate-profile-box h2 {
  margin-top: 16px;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.08;
  letter-spacing: -1.8px;
}

.corporate-profile-box p {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
  line-height: 1.85;
}

.corporate-stats {
  display: grid;
  gap: 16px;
}

.corporate-stats div {
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(14px);
}

.corporate-stats strong {
  display: block;
  color: #ffa5a5;
  font-size: 34px;
  line-height: 1;
  margin-bottom: 8px;
}

.corporate-stats span {
  color: rgba(255, 255, 255, 0.74);
  font-weight: 700;
}

/* SHORT BIO */
.short-bio-section {
  padding: 0 0 110px;
  background: #fffaf3;
}

.short-bio-card {
  padding: 46px;
  border-radius: 34px;
  background: #fff;
  border: 1px solid rgba(17, 24, 39, 0.08);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
  text-align: center;
}

.short-bio-card h2 {
  margin-top: 16px;
  color: #111827;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.1;
  letter-spacing: -1.6px;
}

.short-bio-card p {
  width: min(900px, 100%);
  margin: 18px auto 0;
  color: #4b5563;
  font-size: 18px;
  line-height: 1.9;
}

/* RESPONSIVE UPDATED ABOUT */
@media (max-width: 1080px) {
  .profile-overview-grid,
  .profession-grid,
  .corporate-profile-box {
    grid-template-columns: 1fr;
  }

  .profile-info-card {
    position: static;
  }

  .career-focus-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .profession-image img {
    height: 430px;
  }
}

@media (max-width: 760px) {
  .profile-overview-section,
  .profession-section,
  .career-focus-section {
    padding: 72px 0;
  }

  .profile-main-card,
  .corporate-profile-box,
  .short-bio-card {
    padding: 26px;
    border-radius: 26px;
  }

  .profile-main-card p,
  .profession-content p,
  .corporate-profile-box p,
  .short-bio-card p {
    font-size: 16px;
  }

  .profession-image::before {
    display: none;
  }

  .profession-image img {
    height: 320px;
    border-radius: 24px;
  }

  .career-focus-grid {
    grid-template-columns: 1fr;
  }

  .corporate-profile-section,
  .short-bio-section {
    padding-bottom: 72px;
  }

  .corporate-stats strong {
    font-size: 28px;
  }
}
/* COOKIE TABLE */
.cookie-table-wrap {
  width: 100%;
  overflow-x: auto;
  margin: 24px 0;
  border-radius: 22px;
  border: 1px solid rgba(17, 24, 39, 0.08);
}

.cookie-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
  background: #fff;
}

.cookie-table th,
.cookie-table td {
  padding: 17px 18px;
  text-align: left;
  border-bottom: 1px solid rgba(17, 24, 39, 0.08);
  color: #374151;
  font-size: 15px;
}

.cookie-table th {
  background: #111827;
  color: #fff;
  font-weight: 900;
}

.cookie-table tr:last-child td {
  border-bottom: none;
}

.cookie-table td:first-child {
  font-weight: 900;
  color: var(--primary-dark);
}

/* CONTACT PAGE */
.contact-hero .inner-hero-overlay {
  background:
    linear-gradient(180deg, rgba(17, 24, 39, 0.28), rgba(17, 24, 39, 0.95)),
    radial-gradient(circle at top right, rgba(184, 134, 11, 0.45), transparent 34%);
}

.contact-main {
  padding: 100px 0;
  background:
    radial-gradient(circle at top left, rgba(184, 134, 11, 0.1), transparent 32%),
    #fffaf3;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 34px;
  align-items: start;
}

.contact-form-card {
  padding: 46px;
  border-radius: 34px;
  background: #fff;
  border: 1px solid rgba(17, 24, 39, 0.08);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
}

.contact-form-card h2 {
  margin-top: 16px;
  color: #111827;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.08;
  letter-spacing: -1.8px;
}

.contact-form-card p {
  margin-top: 15px;
  color: var(--muted);
  font-size: 16px;
}

.contact-form {
  margin-top: 34px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: #111827;
  font-size: 14px;
  font-weight: 900;
}

.form-group input,
.form-group textarea {
  width: 100%;
  border: 1px solid rgba(17, 24, 39, 0.1);
  border-radius: 18px;
  padding: 15px 16px;
  font-family: inherit;
  font-size: 15px;
  color: #111827;
  background: #fffaf3;
  outline: none;
  transition: 0.25s ease;
}

.form-group input {
  min-height: 54px;
}

.form-group textarea {
  resize: vertical;
  line-height: 1.7;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: rgba(184, 134, 11, 0.5);
  box-shadow: 0 0 0 5px rgba(184, 134, 11, 0.1);
  background: #fff;
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  margin: 4px 0 24px;
  color: #4b5563;
  font-size: 14px;
  line-height: 1.6;
  cursor: pointer;
}

.form-check input {
  margin-top: 4px;
  accent-color: var(--primary);
}

.contact-submit {
  border: none;
  cursor: pointer;
  gap: 10px;
}

.contact-side {
  position: sticky;
  top: 120px;
  display: grid;
  gap: 18px;
}

.contact-info-card,
.contact-note-card {
  padding: 26px;
  border-radius: 28px;
  background: #fff;
  border: 1px solid rgba(17, 24, 39, 0.08);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
}

.contact-info-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-icon {
  width: 56px;
  height: 56px;
  flex: 0 0 56px;
  border-radius: 19px;
  background: linear-gradient(135deg, #d4a017, #8a6408);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.contact-info-card span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 3px;
}

.contact-info-card strong {
  display: block;
  color: #111827;
  font-size: 17px;
  line-height: 1.4;
}

.contact-info-card p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.contact-social {
  margin-top: 14px;
  display: flex;
  gap: 9px;
}

.contact-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #111827;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 0.25s ease;
}

.contact-social a:hover {
  background: var(--primary);
  transform: translateY(-3px);
}

.contact-note-card {
  background:
    linear-gradient(135deg, rgba(17, 24, 39, 0.96), rgba(49, 36, 13, 0.95)),
    url('https://images.unsplash.com/photo-1519389950473-47ba0277781c?auto=format&fit=crop&w=900&q=80');
  background-size: cover;
  background-position: center;
  color: #fff;
}

.contact-note-card h3 {
  margin-top: 14px;
  font-size: 25px;
  letter-spacing: -0.7px;
}

.contact-note-card p {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.75;
}

.contact-note-card a {
  display: inline-flex;
  margin-top: 18px;
  color: #ffe7a5;
  font-weight: 900;
}

.contact-map-section {
  padding: 0 0 110px;
  background: #fffaf3;
}

.contact-map-box {
  padding: 48px;
  border-radius: 36px;
  background:
    linear-gradient(135deg, rgba(17, 24, 39, 0.96), rgba(47, 35, 14, 0.94)),
    url('https://images.unsplash.com/photo-1524661135-423995f22d0b?auto=format&fit=crop&w=1600&q=80');
  background-size: cover;
  background-position: center;
  color: #fff;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 34px;
  align-items: center;
}

.contact-map-box h2 {
  margin-top: 16px;
  color: #fff;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.08;
  letter-spacing: -1.8px;
}

.contact-map-box p {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
  line-height: 1.8;
}

.map-placeholder {
  min-height: 260px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(14px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 26px;
}

.map-placeholder i {
  width: 72px;
  height: 72px;
  border-radius: 24px;
  background: linear-gradient(135deg, #d4a017, #8a6408);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 16px;
}

.map-placeholder strong {
  font-size: 22px;
}

.map-placeholder span {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.68);
}

/* CONTACT RESPONSIVE */
@media (max-width: 1080px) {
  .contact-grid,
  .contact-map-box {
    grid-template-columns: 1fr;
  }

  .contact-side {
    position: static;
  }
}

@media (max-width: 760px) {
  .contact-main {
    padding: 70px 0;
  }

  .contact-form-card,
  .contact-map-box {
    padding: 26px;
    border-radius: 26px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-info-card {
    flex-direction: column;
  }

  .contact-map-section {
    padding-bottom: 72px;
  }

  .map-placeholder {
    min-height: 220px;
  }
}
/* Blog detay hero yazı düzenleme */
.blog-detail-hero h1 {
  max-width: 860px;
  font-size: clamp(34px, 4.8vw, 66px);
  line-height: 1.08;
  letter-spacing: -2px;
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.38);
}

.blog-detail-hero p {
  max-width: 780px;
  font-size: 18px;
  line-height: 1.8;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
  text-shadow: 0 6px 22px rgba(0, 0, 0, 0.35);
}

.blog-detail-overlay {
  background:
    linear-gradient(90deg, rgba(17, 24, 39, 0.88) 0%, rgba(17, 24, 39, 0.62) 45%, rgba(17, 24, 39, 0.28) 100%),
    linear-gradient(180deg, rgba(17, 24, 39, 0.15), rgba(17, 24, 39, 0.82)),
    radial-gradient(circle at top right, rgba(184, 134, 11, 0.28), transparent 36%);
}

.blog-detail-hero-content {
  padding-top: 30px;
}

.article-meta-top {
  margin-bottom: 18px;
}

.article-author {
  background: rgba(17, 24, 39, 0.42);
  border-color: rgba(255, 255, 255, 0.2);
}

/* Büyük ekranlarda hero içeriği daha kontrollü dursun */
@media (min-width: 1200px) {
  .blog-detail-hero h1 {
    max-width: 820px;
    font-size: 62px;
  }
}

/* Mobil düzenleme */
@media (max-width: 760px) {
  .blog-detail-hero h1 {
    font-size: clamp(32px, 10vw, 46px);
    line-height: 1.12;
    letter-spacing: -1.3px;
  }

  .blog-detail-hero p {
    font-size: 16px;
    line-height: 1.7;
  }

  .blog-detail-overlay {
    background:
      linear-gradient(180deg, rgba(17, 24, 39, 0.35), rgba(17, 24, 39, 0.94)),
      radial-gradient(circle at top right, rgba(184, 134, 11, 0.3), transparent 36%);
  }
}