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

:root {
  /* Classic Premium Dark Theme */
  --bg: #090909;
  /* Deep but luxurious black */
  --bg-soft: #111111;
  --surface: #181818;
  --surface-2: #222222;
  --line: #2a2a2a;
  --line-gold: rgba(234, 179, 8, 0.3);

  --accent: #c09b57 ;
  /* Premium Industrial Yellow/Gold */
  --accent-rgb: 234, 179, 8;
  --accent-hover: #ca8a04;

  --text-1: #ffffff;
  --text-2: #b3b3b3;
  --text-3: #808080;

  --font-base: 'Poppins', sans-serif;

  --radius: 4px;
  /* Classic slight rounding */
  --transition: 0.4s ease;
  --container: 1200px;
  --header-h: 90px;

  --shadow-lux: 0 15px 35px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 5px 25px rgba(234, 179, 8, 0.15);
}

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

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

body {
  font-family: var(--font-base);
  background-color: var(--bg);
  color: var(--text-1);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

#site-main {
  padding-top: var(--header-h);
}

body.route-home #site-main {
  padding-top: 0;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

ul {
  list-style: none;
}

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

h1,
h2,
h3,
h4,
.heading {
  font-family: var(--font-base);
  font-weight: 600;
  line-height: 1.2;
}

.container {
  width: min(92%, var(--container));
  margin-inline: auto;
}

.section {
  padding: 100px 0;
}

.section-header {
  text-align: inherit; /* Allow manual override */
  margin-bottom: 4rem;
  max-width: 900px;
  margin-inline: auto;
}

.section-header.centered {
  text-align: center;
}

.section-eyebrow {
  display: inline-block;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.section-desc {
  color: var(--text-2);
  font-size: 1.05rem;
  margin: 0 auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  font-family: var(--font-base);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  border-radius: var(--radius);
  cursor: pointer;
}

.btn-primary {
  background-color: var(--accent);
  color: #000;
  box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
  background-color: var(--accent-hover);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(234, 179, 8, 0.3);
}

.btn-outline {
  background-color: transparent;
  border: 1px solid var(--line-gold);
  color: var(--accent);
}

.btn-outline:hover {
  background-color: var(--accent);
  color: #000;
}

/* Header Classic Polished */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  height: var(--header-h);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition);
  display: flex;
  align-items: center;
  background: transparent;
}

.site-header.scrolled {
  background-color: rgba(9, 9, 9, 0.95);
  backdrop-filter: blur(15px);
  height: 80px;
  box-shadow: var(--shadow-lux);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0 3rem; /* Pulled inwards more deliberately */
}

.logo img {
  height: 60px; /* Logo slightly enlarged */
  width: auto;
}

.nav-list {
  display: flex;
  gap: 2.5rem;
}

.nav-link {
  font-family: var(--font-base);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-1);
}

.nav-link:hover,
.nav-link.active {
  color: var(--accent);
}

/* Header Tools & Dropdown */
.header-tools {
  display: flex;
  align-items: center;
  gap: 15px;
}

.lang-switch-chic {
  position: relative;
  z-index: 100;
}

.lang-current {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.2);
  transition: var(--transition);
}

.lang-current:hover {
  border-color: var(--accent);
}

.lang-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  background: #090909;
  border: 1px solid var(--line);
  border-top: 2px solid var(--accent);
  box-shadow: var(--shadow-lux);
  border-radius: 0 0 4px 4px;
  min-width: 120px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.3s ease;
  padding: 10px 0;
}

.lang-switch-chic:hover .lang-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(5px);
}

.lang-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 15px;
  color: var(--text-2);
  font-size: 0.85rem;
  font-weight: 500;
  width: 100%;
}

.lang-item:hover {
  background: rgba(234, 179, 8, 0.1);
  color: var(--accent);
}

.lang-item i {
  font-size: 1rem;
}

.lang-item.active {
  color: var(--accent);
  font-weight: 600;
}

/* Fixed Hamburger Icon */
.mobile-toggle {
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  transition: var(--transition);
  z-index: 1001;
}

.mobile-toggle:hover {
  color: var(--accent);
}

/* Mobile Menu Overlay Styles */
@media (max-width: 991px) {
  .site-header .main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(9, 9, 9, 0.98);
    display: flex !important;
    /* Force display flex for mobile menu */
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: 0.4s ease;
  }

  body.mobile-menu-open .site-header .main-nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-list {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .nav-link {
    font-size: 1.5rem;
    font-weight: 600;
  }

  /* Prevent scroll when menu is open */
  body.mobile-menu-open {
    overflow: hidden;
  }
}


/* Classic Full Bleed Hero */
.hero-classic {
  height: 100vh;
  position: relative;
}

.hero-slider {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s;
}

.hero-slide.active {
  opacity: 1;
}

.slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4) contrast(1.1);
}

.hero-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero-content h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  max-width: 900px;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* Page Hero & Breadcrumbs */
.page-hero {
  background-color: var(--bg);
  padding-top: var(--header-h);
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  text-align: center;
}

.page-hero .section-title {
  margin: 0;
}

.breadcrumb {
  display: flex !important;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 1.2rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: var(--accent);
}

.breadcrumb span:not(.breadcrumb-sep) {
  color: var(--accent);
}

.breadcrumb-sep {
  color: rgba(255, 255, 255, 0.1);
  font-size: 0.7rem;
}


/* Polished Dark Image Cards (Luxury Grid) */
.luxury-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.luxury-card {
  background-color: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-lux);
  display: flex;
  flex-direction: column;
}

.luxury-card:hover {
  border-color: var(--accent);
  transform: translateY(-10px);
}

.lc-img-wrap {
  width: 100%;
  height: 240px;
  overflow: hidden;
  position: relative;
  border-bottom: 2px solid var(--accent);
}

.lc-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.luxury-card:hover .lc-img-wrap img {
  transform: scale(1.1);
}

.lc-content {
  padding: 30px;
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.luxury-card h3 {
  font-size: 1.3rem;
  color: var(--text-1);
  margin-bottom: 1rem;
}

.luxury-card p {
  color: var(--text-2);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  flex: 1;
}

/* About Showcase Section (Homepage) */
.about-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.as-images {
  position: relative;
}

.as-img-main {
  width: 85%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lux);
  border: 1px solid var(--line);
}

.as-img-sub {
  position: absolute;
  bottom: -30px;
  right: 0;
  width: 55%;
  border-radius: var(--radius);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
  border: 4px solid var(--bg);
}

.as-content h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 1.5rem;
}

.as-content p {
  color: var(--text-2);
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}

.as-features {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.as-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-1);
  font-weight: 500;
}

.as-features i {
  color: var(--accent);
}

/* Utilities & Visibility */
.d-none {
  display: none !important;
}

@media (min-width: 768px) {
  .d-md-flex {
    display: flex !important;
  }
}

@media (min-width: 992px) {
  .d-lg-none {
    display: none !important;
  }

  .d-lg-block {
    display: block !important;
  }

  .d-lg-flex {
    display: flex !important;
  }
}

/* About Premium Split (Metin Sol - Görsel Sağ) */
.about-split {
  display: flex;
  gap: 80px;
  align-items: flex-start;
}

.about-text {
  flex: 1;
}

.about-text .content {
  color: var(--text-2);
  line-height: 1.8;
  font-size: 1.05rem;
}

.about-text .content p {
  margin-bottom: 1.5rem;
}

.about-img {
  flex: 0 0 45%;
  position: sticky;
  top: 100px; /* Header'ın hemen altında sabitlenecek şekilde ayarlandı */
  z-index: 10;
  max-height: calc(100vh - 120px);
  overflow: visible;
}

.about-img img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lux);
  border: 1px solid var(--line);
  transition: var(--transition);
}

.about-img img:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
}

@media (max-width: 991px) {
  .about-split {
    flex-direction: column;
    gap: 40px;
  }
  
  .about-img {
    position: static;
    flex: none;
    width: 100%;
  }
}

/* About Premium Split (Legacy Name for compatibility) */
.about-premium {
  display: flex;
  gap: 80px;
  align-items: flex-start; /* Sticky çalışması için şart */
}

.about-p-text {
  flex: 1;
}

.about-p-img {
  flex: 0 0 45%;
  position: sticky;
  top: 100px; /* Header'dan sonra takılmaya başlar */
  z-index: 5;
  max-height: calc(100vh - 120px);
}

.about-p-img::before {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--accent);
  z-index: 0;
  border-radius: var(--radius);
}

.about-p-img img {
  position: relative;
  z-index: 1;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lux);
}

.about-p-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--text-1);
}

.about-p-text p {
  color: var(--text-2);
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.about-p-text .content {
  color: var(--text-2);
}



/* Classic Process (Straight Workflow) */
.workflow-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.workflow-item {
  text-align: center;
  position: relative;
  padding: 30px 20px;
}

.workflow-item:not(:last-child)::after {
  content: '\f105';
  /* FontAwesome right arrow */
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  right: -10px;
  top: 40px;
  color: var(--line);
  font-size: 1.5rem;
}

.wf-num {
  width: 50px;
  height: 50px;
  margin: 0 auto 1.5rem;
  background-color: var(--accent);
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  border-radius: 50%;
  box-shadow: var(--shadow-glow);
}

.workflow-item h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.workflow-item p {
  color: var(--text-2);
  font-size: 0.9rem;
}

/* Stats Ribbon */
.stats-ribbon {
  background-color: var(--bg-soft);
  border-block: 1px solid var(--line);
  padding: 60px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.stat-num {
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent);
  display: block;
}

.stat-lbl {
  font-size: 0.9rem;
  color: var(--text-2);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Infinite Scrolling Marquee (References) */
.marquee-references {
  padding: 80px 0;
  background-color: var(--bg);
  border-top: 1px solid var(--line);
  overflow: hidden;
  position: relative;
}

.marquee-track {
  display: flex;
  width: max-content;
  align-items: center;
}

.marquee-content {
  display: flex;
  gap: 80px;
  padding-right: 80px;
  animation: marquee-scroll 40s linear infinite;
}

.marquee-references:hover .marquee-content {
  animation-play-state: paused;
}

.marquee-item {
  flex: 0 0 auto;
  width: 240px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: grayscale(1) opacity(0.4);
  transition: var(--transition);
}

.marquee-item:hover {
  filter: grayscale(0) opacity(1);
  transform: scale(1.1);
}

.marquee-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

@media (max-width: 768px) {
  .marquee-references {
    padding: 60px 0;
  }
  .marquee-content {
    gap: 60px;
    padding-right: 60px;
  }
  .marquee-item {
    width: 180px;
    height: 90px;
  }
}

/* References Page Grid */
.refs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.ref-item {
  background-color: var(--bg-soft);
  border: 1px solid var(--line);
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: var(--radius);
  transition: var(--transition);
  height: 200px;
}

.ref-item:hover {
  border-color: var(--accent);
  transform: translateY(-5px);
  background-color: var(--surface);
}

.ref-item img {
  max-width: 100%;
  max-height: 150px;
  object-fit: contain;
  filter: grayscale(1) opacity(0.6);
  transition: var(--transition);
}

.ref-item:hover img {
  filter: grayscale(0) opacity(1);
  transform: scale(1.05);
}

@media (max-width: 991px) {
  .refs-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 575px) {
  .refs-grid {
    grid-template-columns: 1fr;
  }
  .ref-item {
    padding: 30px;
    height: 180px;
  }
}

/* Perfect Classic Gallery */
.gallery-classic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gc-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lux);
  aspect-ratio: 4/3;
  border: 1px solid var(--line);
}

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

.gc-item:hover img {
  transform: scale(1.1);
}

/* Premium Mosaic Gallery */
.gallery-premium-mosaic {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  grid-auto-rows: 250px;
  grid-auto-flow: dense;
  gap: 20px;
}

.gp-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lux);
  border: 1px solid var(--line);
}

/* Mosaic Variation logic (random-ish looking) */
.gp-item.gi-large { grid-column: span 2; grid-row: span 2; }
.gp-item.gi-tall { grid-row: span 2; }
.gp-item.gi-wide { grid-column: span 2; }

.gp-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.gp-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 2;
}

.gp-overlay h4 {
  color: #fff;
  font-size: 1.2rem;
  margin: 0;
  transform: translateY(20px);
  transition: transform 0.4s ease;
}

.view-btn {
  width: 40px;
  height: 40px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-size: 1.1rem;
  margin-top: 15px;
  transform: translateY(20px);
  transition: transform 0.4s ease 0.05s, background 0.3s ease;
  opacity: 0;
}

.gp-item:hover img {
  transform: scale(1.1);
}

.gp-item:hover .gp-overlay {
  opacity: 1;
}

.gp-item:hover .gp-overlay h4,
.gp-item:hover .view-btn {
  transform: translateY(0);
  opacity: 1;
}

.view-btn:hover {
  background: #fff;
}

@media (max-width: 768px) {
  .gallery-premium-mosaic {
    grid-template-columns: 1fr;
    grid-auto-rows: 250px;
  }
  .gp-item.gi-large, .gp-item.gi-wide { grid-column: span 1; }
}

/* Premium Modern Footer */
.site-footer {
  padding: 100px 0 50px;
  background-color: var(--bg-soft);
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 50px;
  margin-bottom: 80px;
}

.footer-logo img {
  height: 55px;
  margin-bottom: 2rem;
  filter: brightness(1.2);
}

.footer-about p {
  color: var(--text-3);
  font-size: 0.95rem;
  line-height: 1.8;
  max-width: 320px;
}

.footer-col h4 {
  color: var(--accent);
  font-size: 1rem;
  margin-bottom: 2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  position: relative;
  display: inline-block;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--accent);
}

.footer-links li {
  margin-bottom: 1rem;
}

.footer-links a {
  color: var(--text-2);
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--accent);
  padding-left: 8px;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 1.5rem;
  color: var(--text-2);
}

.footer-contact li i {
  color: var(--accent);
  font-size: 1.1rem;
  width: 20px;
  text-align: center;
  margin-top: 3px;
}

.footer-contact li a {
  color: var(--text-2);
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-contact li a:hover {
  color: var(--accent);
}

/* Premium Social Icons */
.social-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.social-links a {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: #000;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-links a:hover {
  background: #fff;
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}
  color: var(--accent);
  margin-top: 4px;
}

/* Setup standard animation */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: 0.6s ease-out;
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Premium CTA Section for Subpages */
.cta-premium-section {
  position: relative;
  overflow: hidden;
}

.cta-premium-section .section-title {
  letter-spacing: -0.02em;
}

@media (max-width: 768px) {
  .cta-premium-section {
    padding: 60px 0 !important;
  }
  
  .cta-premium-section h2 {
    font-size: 1.8rem !important;
  }
  
  .cta-premium-section .btn {
    width: 100%;
    padding: 1rem 1.5rem !important;
  }
}

/* Hide gallery nav by default on desktop */
.gallery-nav {
  display: none;
}

/* Responsive Fixes */
@media (max-width: 991px) {

  .luxury-grid,
  .workflow-grid,
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-container-mobile {
    position: relative;
    width: 100%;
  }

  .gallery-classic {
    display: flex !important;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 15px;
    padding: 0 5px 20px 5px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Hide scrollbar */
  }

  .gallery-classic::-webkit-scrollbar {
    display: none;
  }

  .gc-item {
    flex: 0 0 80%;
    width: 80%;
    scroll-snap-align: center;
  }

  .gallery-nav {
    display: flex;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    pointer-events: auto;
    transition: all 0.3s ease;
  }

  .gallery-nav.prev { left: -10px; }
  .gallery-nav.next { right: -10px; }

  .gallery-nav:active {
    background: var(--accent);
    color: #000;
  }

  .workflow-item::after {
    display: none;
  }

  .about-showcase {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .as-img-sub {
    width: 45%;
  }
}

@media (max-width: 768px) {

  .luxury-grid,
  .workflow-grid,
  .stats-grid,
  .gallery-classic {
    grid-template-columns: 1fr;
  }

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

  .as-features {
    grid-template-columns: 1fr;
  }

  /* Compact Mobile UX */
  .section {
    padding: 60px 0;
  }

  .page-hero {
    padding: 70px 0 70px !important;
  }

  .page-hero .section-title {
    font-size: 1.7rem !important;
    line-height: 1.2;
    margin-bottom: 0.5rem;
  }

  .breadcrumb {
    margin-top: 0.8rem !important;
    gap: 8px !important;
    font-size: 0.7rem !important;
    flex-wrap: wrap;
    line-height: 1.4;
  }

  .section-header {
    margin-bottom: 2.5rem !important;
  }

  .section-title {
    font-size: 1.8rem !important;
  }

  .section-desc {
    font-size: 0.95rem !important;
  }
}

/* Premium About Sections */
.about-premium {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: start;
}

.about-goals-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.goal-item {
  border-left: 3px solid var(--accent);
  padding-left: 20px;
}

.goal-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-1);
  margin-bottom: 8px;
}

.goal-desc {
  font-size: 0.9rem;
  color: var(--text-3);
  margin: 0;
  line-height: 1.5;
}

@media (max-width: 991px) {
  .about-premium {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .about-p-img::before {
    display: none;
  }
}

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

/* Home About Summary Section */
.home-about-summary {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: stretch;
}

.has-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.has-text p {
  color: var(--text-2);
  font-size: 1.15rem;
  line-height: 1.8;
  margin-bottom: 0;
}

.has-image {
  position: relative;
}

.has-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lux);
}

@media (max-width: 991px) {
  .home-about-summary {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .has-image {
    order: -1;
    height: 400px;
  }
}

/* ==========================================================================
   News / Blog Styles
   ========================================================================== */

.container-wide {
  width: min(94%, 1400px);
  margin-inline: auto;
}

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

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

@media (max-width: 767px) {
  .news-grid {
    grid-template-columns: 1fr;
  }
}

.news-card {
  background-color: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  height: 100%;
}

.news-card:hover {
  border-color: var(--accent);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lux);
}

.news-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-bottom: 2px solid var(--accent);
  transition: transform 0.6s ease;
}

.news-card:hover img {
  transform: scale(1.05);
}

.news-card-content {
  padding: 25px;
}

.news-card-content h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  line-height: 1.3;
  color: var(--text-1);
}

.news-card-content p {
  color: var(--text-2);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-card-content small {
  color: var(--accent);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.75rem;
}

/* News Detail Page */
.news-cover {
  margin-bottom: 50px;
}

.news-cover img {
  width: 100%;
  aspect-ratio: 21 / 9;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lux);
}

@media (max-width: 991px) {
  .news-cover img {
    aspect-ratio: 16 / 9;
  }
}

/* Prose Content (Typography) */
.prose {
  max-width: 900px;
  margin-inline: auto;
  color: var(--text-2);
  line-height: 1.8;
  font-size: 1.1rem;
}

.prose h3 {
  color: var(--text-1);
  font-size: 1.8rem;
  margin: 2.5rem 0 1.5rem;
}

.prose h4 {
  color: var(--accent);
  font-size: 1.3rem;
  margin: 2rem 0 1rem;
}

.prose p {
  margin-bottom: 1.5rem;
}

.prose ul {
  margin-bottom: 2rem;
  padding-left: 20px;
}

.prose li {
  list-style: disc;
  margin-bottom: 0.5rem;
}

.empty-state {
  text-align: center;
  padding: 50px;
  color: var(--text-3);
  font-style: italic;
  grid-column: 1 / -1;
}