* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
}

body {
  font-family: Arial, sans-serif;
  color: #1f2937;
  background-color: #ffffff;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

.container {
  width: 92%;
  max-width: 1280px;
  margin: 0 auto;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
}

/* HEADER */
.site-header {
  background-color: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  padding: 5px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-container {
  display: flex;
  align-items: center;
  gap: 28px;
  position: relative;
}

/* LOGO */
.logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-shrink: 0;
}

.logo img {
  height: 60px;
  width: auto;
  display: block;
}

/* NAV */
.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 30px;
  flex: 1 1 auto;
  min-width: 0;
}

.main-nav a {
  color: #0f172a;
  font-size: 15px;
  font-weight: 700;
  position: relative;
  transition: color 0.3s ease;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  height: 24px;
}

.main-nav a:hover {
  color: #c1121f;
}

.main-nav a.active {
  color: #c1121f;
}


.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background-color: #c1121f;
  transition: width 0.3s ease;
}

.main-nav a:hover::after {
  width: 100%;
}

/* RIGHT AREA */
.header-right {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
  flex-shrink: 0;
}

/* HAMBURGER */
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  flex-shrink: 0;
  z-index: 1600;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2.5px;
  background-color: #0f172a;
  border-radius: 999px;
  margin: 0 auto;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(8.5px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-8.5px) rotate(-45deg);
}

/* LANGUAGE DROPDOWN */
.language-dropdown {
  position: relative;
}

.language-current {
  border: none;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0;
}

.lang-current-left {
  display: flex;
  align-items: center;
  gap: 6px;
}

.lang-icon-img {
  width: 18px;
  height: 18px;
  display: block;
}

.lang-current-code {
  font-size: 14px;
  font-weight: 700;
  color: #c1121f;
}

.lang-arrow {
  font-size: 12px;
  color: #111827;
  line-height: 1;
}

.language-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 100px;
  background-color: #f3f4f6;
  border: 1px solid #e5e7eb;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  padding: 6px 0;
  z-index: 2000;
  display: none;
}

.language-dropdown.active .language-menu {
  display: block;
}

.language-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 7px 12px;
  color: #111827;
  font-size: 14px;
  font-weight: 500;
  transition: background-color 0.2s ease;
}

.language-item:hover {
  background-color: #e5e7eb;
}

.language-code {
  min-width: 24px;
}

.language-item img {
  width: 24px;
  height: 16px;
  object-fit: cover;
  display: block;
}

/* WHATSAPP BUTTON */
.whatsapp-btn {
  background-color: #05a941;
  color: #ffffff;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  white-space: nowrap;
  transition: background-color 0.3s ease;
  margin-left: 15px;
  min-height: 42px;
}

.whatsapp-btn:hover {
  background-color: #0bab45;
}

.whatsapp-icon {
  width: 30px;
  height: 30px;
  display: block;
  object-fit: contain;
}

/* HERO SLIDER */
.hero {
  position: relative;
  overflow: hidden;
  padding: 0;
  min-height: 550px;
  border: none;
}

.hero-slider {
  position: relative;
  width: 100%;
  min-height: 550px;
  user-select: none;
  -webkit-user-select: none;
}

.hero-slide {
  position: relative;
  min-height: 550px;
  display: none;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-slide.active {
  display: block;
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: -20px;
  background-image: inherit;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: blur(6px);
  transform: scale(1.06);
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(193, 18, 31, 0.68),
    rgba(120, 10, 20, 0.48)
  );
  z-index: 1;
}
.hero-slide:first-child .hero-overlay {
  background: linear-gradient(
    to right,
    rgba(120, 0, 10, 0.82),
    rgba(150, 27, 27, 0.62)
  );
}

.hero-container {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  min-height: 550px;
  padding-top: 55px;
  padding-bottom: 75px;
}

.hero-text {
  flex: 1;
  max-width: 700px;
}

.hero-tag {
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-text h1 {
  font-size: clamp(34px, 5vw, 52px);
  line-height: 1.08;
  margin-bottom: 20px;
  max-width: 760px;
  color: #ffffff;
}

.hero-description {
  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.6;
  color: #f8fafc;
  max-width: 700px;
  margin-bottom: 28px;
  font-weight: 500;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.primary-btn,
.secondary-btn {
  padding: 13px 22px;
  border-radius: 12px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  font-size: 14px;
}

.primary-btn {
  background-color: #c1121f;
  color: #ffffff;
}

.primary-btn:hover {
  background-color: #a50f1a;
}

.secondary-btn {
  border: 1px solid rgba(255, 255, 255, 0.65);
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.08);
}

.secondary-btn:hover {
  background-color: rgba(255, 255, 255, 0.16);
}

.hero-card {
  position: relative;
  z-index: 2;
  width: 320px;
  background-color: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(229, 231, 235, 0.75);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(6px);
  flex-shrink: 0;
}

.hero-card h3 {
  margin-bottom: 16px;
  font-size: 20px;
  color: #0f172a;
}

.hero-card ul {
  padding-left: 20px;
}

.hero-card li {
  margin-bottom: 12px;
  color: #334155;
  line-height: 1.65;
  font-size: 15px;
}

/* OTHER SLIDES */
.hero-slide-content {
  position: relative;
  z-index: 2;
  min-height: 550px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #ffffff;
  padding-top: 55px;
  padding-bottom: 75px;
}

.center-content {
  align-items: center;
  text-align: center;
}

.hero-slide-content h2 {
  font-size: clamp(30px, 5vw, 46px);
  line-height: 1.1;
  margin-bottom: 18px;
  max-width: 980px;
  color: #ffffff;
}

.hero-slide-content p {
  font-size: clamp(16px, 2vw, 18px);
  line-height: 1.6;
  max-width: 900px;
  color: #f8fafc;
  font-weight: 500;
}

/* DOTS */
.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 10px;
}

.dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: rgba(15, 23, 42, 0.7);
  border: 2px solid rgba(255, 255, 255, 0.4);
  cursor: pointer;
}

.dot.active {
  background-color: #ffffff;
}

/* REFERENCES SECTION */
.references-section {
  padding: 35px 0;
  background-color: #ffffff;
  border: none;
}

.section-header {
  margin-bottom: 18px;
}

.section-tag {
  font-size: 15px;
  font-weight: 700;
  color: #c1121f;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.section-header p,
.section-header h2 {
  font-size: 18px;
  color: #000000;
  line-height: 1.2;
  margin: 0;
  font-weight: 600;
  letter-spacing: 0.2px;
  text-transform: uppercase;
}

.references-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.reference-card {
  position: relative;
  display: block;
  background-color: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: inherit;
}

.reference-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.11);
}

.reference-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  aspect-ratio: 1 / 1;
  background: rgba(15, 23, 42, 0.18);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
  pointer-events: none;
}

.reference-card::after {
  content: "⌕";
  position: absolute;
  top: 42%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.92);
  color: #0f172a;
  font-size: 23px;
  line-height: 42px;
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 3;
  pointer-events: none;
}

.reference-card:hover::before,
.reference-card:hover::after {
  opacity: 1;
}

.reference-card:hover::after {
  transform: translate(-50%, -50%) scale(1);
}

.reference-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  height: auto;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.reference-card:hover img {
  transform: scale(1.06);
}

.reference-card h3 {
  font-size: 14px;
  color: #0ea5a8;
  padding: 10px 11px 12px;
  line-height: 1.25;
  font-weight: 600;
  background-color: #ffffff;
  position: relative;
  z-index: 1;
}

/* INFO TABS SECTION */
.info-tabs-section {
  padding: 55px 0 65px;
  background: #ffffff;
  border: none;
}

.info-tabs-wrapper {
  background: #203640;
  border-radius: 24px;
  padding: 34px 36px 38px;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.10);
}

.info-tabs-header {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.info-tab-btn {
  border: none;
  background: rgba(255, 255, 255, 0.10);
  color: #d9f4f7;
  padding: 14px 24px;
  border-radius: 12px 12px 0 0;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.info-tab-btn:hover {
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
}

.info-tab-btn.active {
  background: #ff2a1a;
  color: #ffffff;
}

.info-tabs-content {
  position: relative;
}

.info-tab-panel {
  display: none;
}

.info-tab-panel.active {
  display: block;
}

.info-tab-panel h3 {
  font-size: 26px;
  line-height: 1.35;
  color: #ffffff;
  margin-bottom: 20px;
  font-weight: 600;
  letter-spacing: 0.2px;
}

.info-tab-panel p {
  font-size: 17px;
  line-height: 1.9;
  color: #edf5f7;
  font-weight: 400;
  max-width: 1100px;
}

.info-tab-intro {
  margin-bottom: 18px;
  color: #dce9ed !important;
  font-size: 16px !important;
}

/* PROMO SECTION */
.promo-section {
  padding: 15px 0 46px;
  background-color: #fdf3e7;
  border: none;
}

.promo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.promo-card {
  position: relative;
  height: 225px;
  overflow: hidden;
  border-radius: 18px;
  display: block;
  color: #ffffff;
  background-color: #111827;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.13);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.promo-card:hover {
  transform: translateY(-9px);
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.20);
}

.promo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: none;
  transform: scale(1);
  transition: transform 0.35s ease;
}

.promo-card:hover img {
  transform: scale(1.015);
  filter: none;
}

.promo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(15, 23, 42, 0.68) 0%,
    rgba(15, 23, 42, 0.38) 48%,
    rgba(15, 23, 42, 0.08) 100%
  );
  z-index: 1;
  transition: background 0.28s ease;
}

.promo-card:hover::after {
  background: linear-gradient(
    to right,
    rgba(15, 23, 42, 0.60) 0%,
    rgba(15, 23, 42, 0.30) 48%,
    rgba(15, 23, 42, 0.04) 100%
  );
}

.promo-content {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  z-index: 2;
}

.promo-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #c1121f;
  color: #ffffff;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 10px;
  box-shadow: 0 6px 14px rgba(193, 18, 31, 0.25);
}

.promo-content h3 {
  color: #ffffff;
  font-size: 21px;
  line-height: 1.25;
  font-weight: 700;
  max-width: 520px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
}

/* PROJECT DETAIL PAGE */
.project-detail-page {
  padding: 30px 0 70px;
  background-color: #f8fafc;
  border: none;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  color: #c1121f;
  font-weight: 700;
  font-size: 15px;
}

.modern-back-link {
  padding: 10px 16px;
  border: 1px solid #f1d4d7;
  border-radius: 999px;
  background-color: #fff5f6;
  transition: all 0.3s ease;
}

.modern-back-link:hover {
  background-color: #fdebed;
  border-color: #e9b8be;
}

.back-arrow {
  font-size: 18px;
  line-height: 1;
}

.project-detail-header {
  margin-bottom: 40px;
}

.project-detail-header h1 {
  font-size: clamp(26px, 4vw, 30px);
  color: #1e293b;
  margin-bottom: 14px;
  text-align: left;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.project-detail-text {
  max-width: 820px;
  font-size: 17px;
  line-height: 1.8;
  color: #475569;
  font-weight: 400;
  text-align: left;
  margin: 0;
}

.project-subsection {
  margin-top: 10px;
}

.project-subtitle {
  font-size: clamp(20px, 3vw, 22px);
  color: #0f172a;
  margin-bottom: 22px;
  text-align: center;
  font-weight: 600;
}

.project-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.project-gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  cursor: pointer;
}

.project-gallery-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.20);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
  pointer-events: none;
}

.project-gallery-item::after {
  content: "⌕";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.94);
  color: #0f172a;
  font-size: 30px;
  line-height: 58px;
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 3;
  pointer-events: none;
}

.project-gallery-item:hover::before,
.project-gallery-item:hover::after {
  opacity: 1;
}

.project-gallery-item:hover::after {
  transform: translate(-50%, -50%) scale(1);
}

.project-gallery-item img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.project-gallery-item:hover img {
  transform: scale(1.06);
}


/* CORPORATE PAGE */
.corporate-page {
  background-color: #f8fafc;
  color: #0f172a;
}

.corporate-hero {
  position: relative;
  overflow: hidden;
  padding: 50px 0 76px;
  background:
    radial-gradient(circle at top right, rgba(193, 18, 31, 0.30), transparent 34%),
    linear-gradient(135deg, #233540 0%, #203640 54%, #162731 100%);
  border: none;
}

.corporate-hero::after {
  content: "";
  position: absolute;
  inset: auto -120px -170px auto;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.06);
  pointer-events: none;
}

.corporate-hero-container {
  position: relative;
  z-index: 1;
  max-width: 980px;
}

.corporate-eyebrow {
  display: inline-flex;
  align-items: center;
  color: #ffffff;
  background-color: rgba(193, 18, 31, 0.92);
  padding: 7px 13px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.7px;
  margin-bottom: 18px;
}

.corporate-hero h1 {
  color: #ffffff;
  font-size: clamp(25px, 3vw, 35px);
  line-height: 1.08;
  font-weight: 700;
  margin-bottom: 16px;
}

.corporate-hero p {
  max-width: 760px;
  color: #dbe9ee;
  font-size: clamp(12px, 2vw, 15px);
  line-height: 1.75;
  font-weight: 400;
}

.corporate-content-section {
  padding: 50px 0 76px;
  background-color: #f8fafc;
  border: none;
}

.corporate-intro-card {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1.08fr);
  gap: 42px;
  align-items: center;
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 28px;
  padding: 34px;
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.08);
}

.corporate-image-box {
  overflow: hidden;
  border-radius: 22px;
  background-color: #eef2f4;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.10);
}

.corporate-image-box img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
}

.corporate-text-box {
  padding-right: 10px;
}

.corporate-small-title {
  display: inline-flex;
  color: #c1121f;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.corporate-text-box h2,
.corporate-detail-card h2 {
  color: #142631;
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.25;
  font-weight: 700;
  margin-bottom: 18px;
}

.corporate-text-box p,
.corporate-detail-card p {
  color: #475569;
  font-size: 16px;
  line-height: 1.9;
  font-weight: 400;
  margin-bottom: 16px;
}

.corporate-text-box p:last-child,
.corporate-detail-card p:last-child {
  margin-bottom: 0;
}

.corporate-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin: 28px 0;
}

.corporate-stat-item {
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  padding: 22px 20px;
  min-height: 132px;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.corporate-stat-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.10);
}

.corporate-stat-item strong {
  display: block;
  color: #c1121f;
  font-size: 28px;
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 10px;
}

.corporate-stat-item span {
  display: block;
  color: #475569;
  font-size: 14.5px;
  line-height: 1.55;
  font-weight: 500;
}

.corporate-detail-card {
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-left: 5px solid #c1121f;
  border-radius: 24px;
  padding: 34px 38px;
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.07);
}

/* LIGHTBOX */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.82);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 3000;
  padding: 30px;
}

.lightbox.active {
  display: flex;
}

.lightbox-image {
  max-width: 82vw;
  max-height: 82vh;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.lightbox-close {
  position: absolute;
  top: 22px;
  right: 28px;
  border: none;
  background: transparent;
  color: #ffffff;
  font-size: 42px;
  cursor: pointer;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border: none;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font-size: 34px;
  cursor: pointer;
  border-radius: 8px;
}

.lightbox-prev {
  left: 18px;
}

.lightbox-next {
  right: 18px;
}

/* FOOTER */
.site-footer {
  background-color: #233540;
  color: #ffffff;
  padding: 28px 0 16px;
  border: none;
}

.footer-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr;
  gap: 36px;
  align-items: flex-start;
}

.footer-brand img {
  width: 285px;
  height: auto;
  display: block;
  margin-bottom: 8px;
  margin-left: -22px;
  background-color: transparent;
  border-radius: 0;
  padding: 0;
}

.footer-brand p {
  max-width: 390px;
  color: #d7e6ea;
  font-size: 14.5px;
  line-height: 1.6;
  font-weight: 400;
}

.footer-links h4,
.footer-contact h4 {
  color: #ffffff;
  font-size: 16px;
  margin-bottom: 14px;
  font-weight: 700;
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-links a {
  color: #d7e6ea;
  font-size: 14px;
  margin-bottom: 9px;
  transition: color 0.25s ease, transform 0.25s ease;
}

.footer-links a:hover {
  color: #ffffff;
  transform: translateX(3px);
}

.footer-contact p {
  color: #d7e6ea;
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 12px;
  font-weight: 400;
}

.footer-contact span {
  color: #ffffff;
  font-weight: 700;
}

.footer-contact a {
  color: #d7e6ea;
  font-weight: 600;
  transition: color 0.25s ease;
}

.footer-contact a:hover {
  color: #ffffff;
}

/* FOOTER PARTNER LOGO STRIP */
.footer-partners {
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.footer-partners > span {
  display: block;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 14px;
}

.footer-partner-list {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: center;
  column-gap: 30px;
  row-gap: 18px;
}

.footer-partner-list img {
  width: auto;
  max-width: 100%;
  height: 56px;
  object-fit: contain;
  display: block;
  justify-self: center;
  background: transparent;
  border: none;
  padding: 0;
  margin: 0;
  border-radius: 0;
  box-shadow: none;
  opacity: 0.99;
  filter: brightness(1.1) contrast(1.1) drop-shadow(0 2px 8px rgba(0, 0, 0, 0.18));
  transition: transform 0.25s ease, opacity 0.25s ease, filter 0.25s ease;
}

.footer-partner-list img:hover {
  transform: translateY(-2px) scale(1.02);
  opacity: 1;
  filter: brightness(1.14) contrast(1.12) drop-shadow(0 4px 12px rgba(0, 0, 0, 0.22));
}

.footer-bottom {
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.footer-bottom p {
  color: #b8cbd0;
  font-size: 13px;
  line-height: 1.6;
  font-weight: 400;
}

p {
  font-size: inherit;
  font-weight: inherit;
}
/* KALİTE BELGELERİ SAYFASI - METİN DÜZENİ */
.project-kalite-text {
  max-width: 1180px;
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-left: 5px solid #c1121f;
  border-radius: 18px;
  padding: 24px 28px;
  margin: 18px 0 26px;
  color: #334155;
  font-size: 15.5px;
  line-height: 1.85;
  font-weight: 400;
  letter-spacing: 0.1px;
  text-align: left;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
}

.project-kalite-text + h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #142631;
  font-size: clamp(20px, 2.5vw, 25px);
  line-height: 1.3;
  font-weight: 700;
  margin: 26px 0 28px;
  letter-spacing: 0.2px;
}

.project-kalite-text + h3::before {
  content: "";
  width: 5px;
  height: 26px;
  border-radius: 999px;
  background-color: #c1121f;
  flex-shrink: 0;
}

.project-kalite-text + h3 + .project-subsection,
.project-detail-header + .project-subsection {
  margin-top: 18px;
}
/* REFERANSLAR SAYFASI - TIKLANABİLİR KARTLAR */
.references-page-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.reference-link-card {
  position: relative;
  display: block;
  height: 215px;
  overflow: hidden;
  border-radius: 16px;
  background-color: #e5e7eb;
  color: #ffffff;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.10);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.reference-link-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.16);
}

.reference-link-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.reference-link-card:hover img {
  transform: scale(1.06);
}

.reference-link-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(15, 23, 42, 0.78) 0%,
    rgba(15, 23, 42, 0.38) 46%,
    rgba(15, 23, 42, 0.04) 100%
  );
  z-index: 1;
}

.reference-card-overlay {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  z-index: 2;
}

.reference-card-overlay h3 {
  color: #ffffff;
  font-size: 20px;
  line-height: 1.25;
  font-weight: 700;
  margin-bottom: 7px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.32);
}

.reference-card-overlay span {
  display: inline-flex;
  align-items: center;
  color: #ffffff;
  background-color: rgba(193, 18, 31, 0.92);
  padding: 6px 11px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

.reference-link-card.no-link {
  cursor: default;
}

.reference-link-card.no-link:hover {
  transform: none;
}

.reference-link-card.no-link .reference-card-overlay span {
  background-color: rgba(255, 255, 255, 0.18);
  color: #f8fafc;
}

/* ÜRÜNLER SAYFASI */
.products-page {
  background-color: #f8fafc;
  color: #0f172a;
}

.products-hero-section {
  padding: 30px 0 42px;
  background:
    radial-gradient(circle at top right, rgba(193, 18, 31, 0.22), transparent 32%),
    linear-gradient(135deg, #233540 0%, #203640 56%, #162731 100%);
  border: none;
}

.products-page-header {
  max-width: 860px;
}

.products-eyebrow {
  display: inline-flex;
  align-items: center;
  background-color: rgba(193, 18, 31, 0.95);
  color: #ffffff;
  padding: 7px 13px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.7px;
  margin-bottom: 16px;
}

.products-page-header h1 {
  color: #ffffff;
  font-size: clamp(20px, 2vw, 35px);
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 16px;
}

.products-page-header p {
  max-width: 760px;
  color: #dbe9ee;
  font-size: clamp(15px, 1vw, 10px);
  line-height: 1.75;
  font-weight: 400;
}

.products-menu-section {
  padding: 52px 0 78px;
  background-color: #f8fafc;
  border: none;
}

.product-menu-input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.product-menu-layout {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 24px;
  align-items: flex-start;
}

.product-category-list,
.product-panel-list {
  background-color: #233540;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 14px;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.14);
}

.product-category-list {
  padding: 12px 18px;
}

.product-category-label {
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: #ffffff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 16px;
  line-height: 1.25;
  font-weight: 700;
  cursor: pointer;
  transition: color 0.25s ease, padding-left 0.25s ease;
}

.product-category-label:last-child {
  border-bottom: none;
}

.product-category-label:hover {
  color: #ff3148;
  padding-left: 4px;
}

.product-arrow {
  color: #ffffff;
  font-size: 26px;
  line-height: 1;
  transition: transform 0.25s ease, color 0.25s ease;
}

.product-panel-list {
  min-height: 100px;
  padding: 22px 26px;
}

.product-panel {
  display: none;
}

.product-panel h2 {
  color: #ffffff;
  font-size: 15px;
  line-height: 1.25;
  font-weight: 800;
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.product-panel p {
  color: #d7e6ea;
  font-size: 15.5px;
  line-height: 1.8;
  font-weight: 400;
}

.product-submenu-list {
  display: flex;
  flex-direction: column;
}

.product-submenu-list a {
  color: #ffffff;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 15px;
  line-height: 1.3;
  font-weight: 700;
  transition: color 0.25s ease, padding-left 0.25s ease;
}

.product-submenu-list a:last-child {
  border-bottom: none;
}

.product-submenu-list a:hover {
  color: #ff3148;
  padding-left: 6px;
}

/* ACTIVE STATES */
#prod-pvc:checked ~ .product-menu-layout .product-category-label[for="prod-pvc"],
#prod-aluminum:checked ~ .product-menu-layout .product-category-label[for="prod-aluminum"],
#prod-shutter:checked ~ .product-menu-layout .product-category-label[for="prod-shutter"],
#prod-glass:checked ~ .product-menu-layout .product-category-label[for="prod-glass"],
#prod-shower:checked ~ .product-menu-layout .product-category-label[for="prod-shower"],
#prod-balcony:checked ~ .product-menu-layout .product-category-label[for="prod-balcony"],
#prod-office:checked ~ .product-menu-layout .product-category-label[for="prod-office"],
#prod-winter:checked ~ .product-menu-layout .product-category-label[for="prod-winter"],
#prod-veranda:checked ~ .product-menu-layout .product-category-label[for="prod-veranda"] {
  color: #ff3148;
}

#prod-pvc:checked ~ .product-menu-layout .product-category-label[for="prod-pvc"] .product-arrow,
#prod-aluminum:checked ~ .product-menu-layout .product-category-label[for="prod-aluminum"] .product-arrow {
  color: #ff3148;
  transform: rotate(90deg);
}

#prod-pvc:checked ~ .product-menu-layout .panel-pvc,
#prod-aluminum:checked ~ .product-menu-layout .panel-aluminum,
#prod-shutter:checked ~ .product-menu-layout .panel-shutter,
#prod-glass:checked ~ .product-menu-layout .panel-glass,
#prod-shower:checked ~ .product-menu-layout .panel-shower,
#prod-balcony:checked ~ .product-menu-layout .panel-balcony,
#prod-office:checked ~ .product-menu-layout .panel-office,
#prod-winter:checked ~ .product-menu-layout .panel-winter,
#prod-veranda:checked ~ .product-menu-layout .panel-veranda {
  display: block;
}

.nav-products-dropdown {
  position: relative;
  display: flex;
  align-items: center;
  z-index: 1300;
}

.nav-products-top {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-products-top > a {
  color: #0f172a;
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  height: 24px;
}

.nav-products-trigger {
  width: 18px;
  height: 18px;
  border: none;
  background: transparent;
  color: #0f172a;
  font-size: 11px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: color 0.25s ease, transform 0.25s ease;
}

.nav-products-dropdown:hover .nav-products-top > a,
.nav-products-dropdown:hover .nav-products-trigger {
  color: #c1121f;
}

/* ANA AÇILIR MENÜ */
.nav-products-panel {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  display: none;
  z-index: 1500;
}

/* Header ile menü arasında görünmez geçiş alanı */
.nav-products-panel::before {
  content: "";
  position: absolute;
  left: 0;
  top: -12px;
  width: 100%;
  height: 12px;
  background: transparent;
}

.nav-products-dropdown:hover .nav-products-panel,
.nav-products-dropdown:focus-within .nav-products-panel {
  display: block;
}

/* SOL ANA MENÜ */
.products-mega-list {
  width: 250px;
  background-color: #233540;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.20);
  padding: 8px 14px;
  list-style: none;
  margin: 0;
}

.products-mega-list > li {
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.products-mega-list > li:last-child {
  border-bottom: none;
}

.products-mega-list > li > a,
.mega-parent-btn {
  width: 100%;
  min-height: 38px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.25;
  text-align: left;
  cursor: pointer;
  padding: 0;
  transition: color 0.25s ease, padding-left 0.25s ease;
}

.products-mega-list > li > a:hover,
.mega-parent-btn:hover {
  color: #ff3148;
  padding-left: 3px;
}

.mega-arrow {
  color: #ffffff;
  font-size: 18px;
  line-height: 1;
  flex-shrink: 0;
  transition: color 0.25s ease;
}

.has-subpanel:hover > .mega-parent-btn {
  color: #ff3148;
}

.has-subpanel:hover > .mega-parent-btn .mega-arrow {
  color: #ff3148;
}

/* Sol menüden sağ menüye geçerken kapanmayı engelleyen görünmez köprü */
.has-subpanel::after {
  content: "";
  position: absolute;
  top: 0;
  right: -28px;
  width: 30px;
  height: 100%;
  background: transparent;
}

/* SAĞ ALT MENÜ */
.product-subpanel {
  position: absolute;
  top: -2px;
  left: calc(100% + 18px);
  width: 245px;
  background-color: #233540;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.20);
  padding: 8px 14px;
  display: none;
  z-index: 1600;
}

/* Sağ menü sadece ilgili kategori üstüne gelince açılır */
.has-subpanel:hover > .product-subpanel,
.has-subpanel:focus-within > .product-subpanel {
  display: block;
}

.product-subpanel a {
  min-height: 36px;
  height: auto;
  display: flex;
  align-items: center;
  color: #ffffff;
  font-size: 11.5px;
  font-weight: 700;
  line-height: 1.25;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  transition: color 0.25s ease, padding-left 0.25s ease;
}

.product-subpanel a:last-child {
  border-bottom: none;
}

.product-subpanel a:hover {
  color: #ff3148;
  padding-left: 4px;
}

/* Header nav çizgisinin mega menü içinde bozmaması için */
.nav-products-dropdown a::after {
  display: none !important;
}
/* PRODUCT DETAIL PAGE */
.product-detail-page {
  background-color: #f8fafc;
  color: #0f172a;
}

/* HERO */
.product-detail-hero {
  padding: 58px 0 64px;
  background:
    radial-gradient(circle at top right, rgba(193, 18, 31, 0.24), transparent 34%),
    linear-gradient(135deg, #233540 0%, #203640 55%, #162731 100%);
}

.product-detail-hero-container {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 460px);
  align-items: center;
  gap: 48px;
}

.product-detail-eyebrow {
  display: inline-flex;
  align-items: center;
  background-color: rgba(193, 18, 31, 0.95);
  color: #ffffff;
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.product-detail-text h1 {
  color: #ffffff;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.12;
  font-weight: 800;
  margin-bottom: 18px;
}

.product-detail-text p {
  max-width: 720px;
  color: #dbe9ee;
  font-size: 16px;
  line-height: 1.8;
  font-weight: 400;
}

.product-detail-image-box {
  background-color: #ffffff;
  border-radius: 26px;
  padding: 28px;
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-detail-image-box img {
  width: 100%;
  max-height: 330px;
  object-fit: contain;
  display: block;
}

/* SPEC SECTION */
.product-spec-section {
  padding: 54px 0 28px;
  background-color: #f8fafc;
}

.product-section-header {
  margin-bottom: 24px;
}

.product-section-header span {
  display: inline-flex;
  color: #c1121f;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.product-section-header h2 {
  color: #142631;
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.25;
  font-weight: 800;
}

.product-table-card {
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 24px;
  padding: 22px;
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.08);
}

.responsive-table {
  width: 100%;
  overflow-x: auto;
}

.second-table {
  margin-top: 18px;
}

.product-spec-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 16px;
}

.product-spec-table th {
  background-color: #233540;
  color: #ffffff;
  padding: 15px 14px;
  text-align: left;
  font-size: 13px;
  line-height: 1.45;
  font-weight: 700;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.product-spec-table th:last-child {
  border-right: none;
}

.product-spec-table td {
  background-color: #ffffff;
  color: #334155;
  padding: 14px;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 500;
  border: 1px solid #e5e7eb;
}

.product-spec-table tbody tr:hover td {
  background-color: #f8fafc;
}

/* DESCRIPTION */
.product-description-section {
  padding: 28px 0 72px;
  background-color: #f8fafc;
}

.product-description-card {
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-left: 5px solid #c1121f;
  border-radius: 24px;
  padding: 34px 38px;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.07);
}

.product-description-card h2 {
  color: #142631;
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.3;
  font-weight: 800;
  margin-bottom: 18px;
}

.product-description-card p {
  color: #475569;
  font-size: 16px;
  line-height: 1.9;
  font-weight: 400;
  margin-bottom: 16px;
}

.product-description-card p:last-child {
  margin-bottom: 0;
}
.product-info-card {
  margin-top: 22px;
}

.product-feature-list {
  padding-left: 20px;
  color: #475569;
}

.product-feature-list li {
  font-size: 16px;
  line-height: 1.85;
  margin-bottom: 8px;
}

.product-color-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.product-color-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #f8fafc;
  color: #233540;
  border: 1px solid #e5e7eb;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 700;
}
/* INTEGRATED PRODUCTION PAGE */
.integrated-production-page {
  background-color: #f8fafc;
  color: #0f172a;
  overflow-x: hidden;
}

/* HERO */
.integrated-hero {
  padding: 28px 0 32px;
  background:
    radial-gradient(circle at top right, rgba(255, 48, 84, 0.11), transparent 34%),
    linear-gradient(180deg, #f8fafc 0%, #eef3f6 100%);
}

.integrated-header {
  max-width: 780px;
}

.integrated-eyebrow {
  display: inline-flex;
  align-items: center;
  color: #ff304f;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.integrated-header h1 {
  color: #0b2636;
  font-size: clamp(20px, 2.5vw, 40px);
  line-height: 1.12;
  font-weight: 850;
  margin-bottom: 14px;
}

.integrated-header p {
  color: #36566a;
  font-size: 15px;
  line-height: 1.75;
  max-width: 720px;
}

/* CARD SECTION */
.integrated-card-section {
  padding: 30px 0 64px;
}

.integrated-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 300px));
  justify-content: start;
  gap: 18px;
}

/* CARD */
.integrated-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 235px;
  background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid #e2e8f0;
  border-radius: 22px;
  padding: 24px;
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.07);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.integrated-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(35, 53, 64, 0.97), rgba(20, 39, 49, 0.97));
  opacity: 0;
  transition: opacity 0.25s ease;
  z-index: 0;
}

.integrated-card::after {
  content: "";
  position: absolute;
  width: 112px;
  height: 112px;
  right: -42px;
  top: -42px;
  background-color: rgba(255, 48, 84, 0.13);
  border-radius: 50%;
  z-index: 1;
}

.integrated-card-icon,
.integrated-card-content {
  position: relative;
  z-index: 2;
}

.integrated-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 15px;
  background-color: #233540;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 850;
  margin-bottom: 22px;
  transition: background-color 0.25s ease, color 0.25s ease;
}

.integrated-card h2 {
  color: #0b2636;
  font-size: 22px;
  line-height: 1.25;
  font-weight: 800;
  margin-bottom: 10px;
  transition: color 0.25s ease;
}

.integrated-card p {
  color: #475569;
  font-size: 14.5px;
  line-height: 1.65;
  margin-bottom: 20px;
  transition: color 0.25s ease;
}

.integrated-card-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  background-color: #ff304f;
  color: #ffffff;
  border-radius: 999px;
  padding: 10px 17px;
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.2px;
  margin-top: auto;
  transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.integrated-card-link::before {
  content: "›";
  font-size: 20px;
  line-height: 1;
  margin-right: 7px;
  font-weight: 900;
}
/* =========================
   RAW MATERIAL PAGE
========================= */
.raw-material-page {
  background-color: #f3f5f7;
  color: #1f2937;
  overflow-x: hidden;
}

.raw-material-page .container {
  width: 92%;
  max-width: 1280px;
  margin: 0 auto;
}

/* HERO */
.raw-hero {
  padding: 20px 0 15px;
  background:
    radial-gradient(circle at top right, rgba(227, 6, 19, 0.08), transparent 30%),
    linear-gradient(180deg, #f3f5f7 0%, #eef2f5 100%);
  border-top: 1px solid #e5e7eb;
}

.raw-hero-content {
  max-width: 700px;
}

.raw-eyebrow {
  display: inline-flex;
  align-items: center;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #e30613;
  margin-bottom: 10px;
}

.raw-hero h1 {
  font-size: clamp(30px, 2.5vw, 49px);
  line-height: 1.08;
  font-weight: 800;
  color: #0b2c55;
  margin-bottom: 14px;
}

.raw-hero p {
  font-size: 15px;
  line-height: 1.8;
  color: #4b5563;
  max-width: 720px;
}

/* CONTENT AREA */
.raw-content-section {
  padding: 8px 0 70px;
}

/* Main content card */
.raw-content-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-left: 6px solid #e30613;
  border-radius: 26px;
  padding: 35px 38px;
  box-shadow: 0 14px 38px rgba(15, 23, 42, 0.06);
  margin-bottom: 34px;
}

.raw-content-inner p {
  font-size: 16px;
  line-height: 1.95;
  color: #374151;
  margin-bottom: 22px;
}

.raw-content-inner p:last-child {
  margin-bottom: 0;
}

/* Highlight cards */
.raw-highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-bottom: 34px;
}

.raw-highlight-card {
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
  border: 1px solid #e5e7eb;
  border-radius: 24px;
  padding: 26px 24px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  overflow: hidden;
}

.raw-highlight-card::after {
  content: "";
  position: absolute;
  width: 95px;
  height: 95px;
  top: -32px;
  right: -32px;
  border-radius: 999px;
  background: rgba(227, 6, 19, 0.08);
}

.raw-highlight-number {
  width: 50px;
  height: 50px;
  border-radius: 16px;
  background-color: #0b2c55;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}

.raw-highlight-card h3 {
  font-size: 21px;
  line-height: 1.3;
  font-weight: 800;
  color: #0b2c55;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.raw-highlight-card p {
  font-size: 15px;
  line-height: 1.75;
  color: #4b5563;
  position: relative;
  z-index: 1;
}

/* Info box */
.raw-note-box {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid #e5e7eb;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.05);
}

.raw-note-icon {
  width: 46px;
  height: 46px;
  min-width: 46px;
  border-radius: 14px;
  background-color: #e30613;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 900;
}

.raw-note-content h2 {
  font-size: 24px;
  line-height: 1.25;
  font-weight: 800;
  color: #0b2c55;
  margin-bottom: 10px;
}

.raw-note-content p {
  font-size: 15.5px;
  line-height: 1.8;
  color: #4b5563;
}
/* =========================
   DETAIL PROFILES PAGE
========================= */
.detail-profiles-page {
  background-color: #f3f5f7;
  color: #1f2937;
  overflow-x: hidden;
}

.detail-profiles-page .container {
  width: 92%;
  max-width: 1280px;
  margin: 0 auto;
}

/* HERO */
.detail-profiles-hero {
  padding: 28px 0 21px;
  background:
    radial-gradient(circle at top right, rgba(227, 6, 19, 0.08), transparent 30%),
    linear-gradient(180deg, #f3f5f7 0%, #eef2f5 100%);
  border-top: 1px solid #e5e7eb;
}

.detail-profiles-hero-content {
  max-width: 760px;
}

.detail-profiles-eyebrow {
  display: inline-flex;
  align-items: center;
  color: #e30613;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.detail-profiles-hero h1 {
  font-size: clamp(30px, 2.5vw, 48px);
  line-height: 1.08;
  font-weight: 900;
  color: #0b2c55;
  margin-bottom: 14px;
}

.detail-profiles-hero p {
  font-size: 15px;
  line-height: 1.8;
  color: #4b5563;
  max-width: 760px;
}

/* SECTION */
.detail-profiles-section {
  padding: 10px 0 70px;
}

/* GRID */
.detail-profiles-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

/* CARD */
.detail-profile-card {
  background: #ffffff;
  border: 1px solid #09152e;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.detail-profile-image-wrap {
  background: #f8fafc;
  padding: 18px;
  border-bottom: 1px solid #09152e;
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.detail-profile-image-wrap img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}

.detail-profile-content {
  padding: 16px 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-grow: 1;
}

.detail-profile-content h3 {
  font-size: 17px;
  line-height: 1.35;
  font-weight: 800;
  color: #0b2c55;
  margin: 0;
}

.detail-profile-content p {
  font-size: 14px;
  line-height: 1.7;
  color: #4b5563;
  margin: 0;
}
/* =========================
   ACCESSORIES PAGE
========================= */
.accessories-page {
  background-color: #f3f5f7;
  color: #1f2937;
  overflow-x: hidden;
}

.accessories-page .container {
  width: 92%;
  max-width: 1280px;
  margin: 0 auto;
}

/* HERO */
.accessories-hero {
  padding: 25px 0 28px;
  background:
    radial-gradient(circle at top right, rgba(227, 6, 19, 0.08), transparent 30%),
    linear-gradient(180deg, #f3f5f7 0%, #eef2f5 100%);
  border-top: 1px solid #e5e7eb;
}

.accessories-hero-content {
  max-width: 760px;
}

.accessories-eyebrow {
  display: inline-flex;
  align-items: center;
  color: #e30613;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.accessories-hero h1 {
  font-size: clamp(25px, 2.5vw, 48px);
  line-height: 1.08;
  font-weight: 900;
  color: #0b2c55;
  margin-bottom: 14px;
}

.accessories-hero p {
  font-size: 15px;
  line-height: 1.8;
  color: #4b5563;
  max-width: 760px;
}

/* CONTENT */
.accessories-content-section {
  padding: 10px 0 72px;
}

/* Intro Card */
.accessories-content-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-left: 6px solid #e30613;
  border-radius: 26px;
  padding: 34px 38px;
  box-shadow: 0 14px 38px rgba(15, 23, 42, 0.06);
  margin-bottom: 30px;
}

.accessories-content-inner p {
  font-size: 16px;
  line-height: 1.95;
  color: #374151;
  margin-bottom: 22px;
}

.accessories-content-inner p:last-child {
  margin-bottom: 0;
}

/* Section list */
.accessories-section-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.accessory-section-card {
  background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
  border: 1px solid #e5e7eb;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.05);
}

.accessory-section-heading {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.accessory-section-number {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 15px;
  background-color: #0b2c55;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
}

.accessory-section-heading h2 {
  font-size: 25px;
  line-height: 1.2;
  font-weight: 850;
  color: #0b2c55;
  margin: 0;
}

.accessory-section-card p {
  font-size: 15.5px;
  line-height: 1.9;
  color: #4b5563;
  margin: 0;
}

.accessories-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 260px));
  justify-content: flex-start;
  gap: 16px;
  margin-top: 20px;
}

.accessory-gallery-item {
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4 / 2.7;
  display: flex;
  align-items: center;
  justify-content: center;
}

.accessory-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* =========================
   EPDM PAGE
========================= */
.epdm-page {
  background-color: #f3f5f7;
  color: #1f2937;
  overflow-x: hidden;
}

.epdm-page .container {
  width: 92%;
  max-width: 1280px;
  margin: 0 auto;
}

/* HERO */
.epdm-hero {
  padding: 25px 0 28px;
  background:
    radial-gradient(circle at top right, rgba(227, 6, 19, 0.08), transparent 30%),
    linear-gradient(180deg, #f3f5f7 0%, #eef2f5 100%);
  border-top: 1px solid #e5e7eb;
}

.epdm-hero-content {
  max-width: 760px;
}

.epdm-eyebrow {
  display: inline-flex;
  align-items: center;
  color: #e30613;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.epdm-hero h1 {
  font-size: clamp(25px, 2.5vw, 48px);
  line-height: 1.08;
  font-weight: 900;
  color: #0b2c55;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.epdm-hero p {
  font-size: 15px;
  line-height: 1.8;
  color: #4b5563;
  max-width: 900px;
}

/* CONTENT */
.epdm-content-section {
  padding: 10px 0 72px;
}

/* Section list */
.epdm-section-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.epdm-section-card {
  background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
  border: 1px solid #e5e7eb;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.05);
}

.epdm-feature-card {
  border-left: 6px solid #e30613;
}

.epdm-section-heading {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.epdm-section-number {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 15px;
  background-color: #0b2c55;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
}

.epdm-section-heading h2 {
  font-size: 25px;
  line-height: 1.2;
  font-weight: 850;
  color: #0b2c55;
  margin: 0;
}

.epdm-section-card p {
  font-size: 15.5px;
  line-height: 1.9;
  color: #4b5563;
  margin: 0;
}

.epdm-section-card p + p {
  margin-top: 18px;
}

/* GALLERY */
.epdm-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 260px));
  justify-content: flex-start;
  gap: 16px;
  margin-top: 20px;
}

.epdm-gallery-item {
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4 / 2.7;
  display: flex;
  align-items: center;
  justify-content: center;
}

.epdm-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* =========================
   SUPPORT STEELS PAGE
========================= */
.support-steels-page {
  background-color: #f3f5f7;
  color: #1f2937;
  overflow-x: hidden;
}

.support-steels-page .container {
  width: 92%;
  max-width: 1280px;
  margin: 0 auto;
}

/* HERO */
.support-steels-hero {
  padding: 25px 0 28px;
  background:
    radial-gradient(circle at top right, rgba(227, 6, 19, 0.08), transparent 30%),
    linear-gradient(180deg, #f3f5f7 0%, #eef2f5 100%);
  border-top: 1px solid #e5e7eb;
}

.support-steels-hero-content {
  max-width: 760px;
}

.support-steels-eyebrow {
  display: inline-flex;
  align-items: center;
  color: #e30613;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.support-steels-hero h1 {
  font-size: clamp(25px, 2.5vw, 48px);
  line-height: 1.08;
  font-weight: 900;
  color: #0b2c55;
  margin-bottom: 14px;
}

.support-steels-hero p {
  font-size: 15px;
  line-height: 1.8;
  color: #4b5563;
  max-width: 900px;
}

/* CONTENT */
.support-steels-content-section {
  padding: 10px 0 72px;
}

.support-steels-section-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.support-steels-section-card {
  background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
  border: 1px solid #e5e7eb;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.05);
}

.support-steels-feature-card {
  border-left: 6px solid #e30613;
}

.support-steels-section-heading {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.support-steels-section-number {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 15px;
  background-color: #0b2c55;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
}

.support-steels-section-heading h2 {
  font-size: 25px;
  line-height: 1.2;
  font-weight: 850;
  color: #0b2c55;
  margin: 0;
}

.support-steels-section-card p {
  font-size: 15.5px;
  line-height: 1.9;
  color: #4b5563;
  margin: 0;
}

.support-steels-section-card p + p {
  margin-top: 18px;
}

/* GALLERY */
.support-steels-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 260px));
  justify-content: flex-start;
  gap: 16px;
  margin-top: 20px;
}

.support-steels-gallery-item {
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4 / 2.7;
  display: flex;
  align-items: center;
  justify-content: center;
}

.support-steels-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* =========================
   RELATED SYSTEMS SECTION
========================= */
.related-systems-section {
  padding: 22px 0 78px;
  background:
    radial-gradient(circle at top right, rgba(227, 6, 19, 0.08), transparent 30%),
    linear-gradient(180deg, #f3f5f7 0%, #eef2f5 100%);
}

.related-systems-section .container {
  width: 92%;
  max-width: 1280px;
  margin: 0 auto;
}

.related-systems-header {
  max-width: 760px;
  margin-bottom: 26px;
}

.related-systems-eyebrow {
  display: inline-flex;
  align-items: center;
  color: #e30613;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.related-systems-header h2 {
  font-size: clamp(25px, 2.5vw, 44px);
  line-height: 1.1;
  font-weight: 900;
  color: #0b2c55;
  margin-bottom: 12px;
}

.related-systems-header p {
  font-size: 15px;
  line-height: 1.8;
  color: #4b5563;
  max-width: 760px;
}

.related-systems-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 420px));
  gap: 24px;
  justify-content: flex-start;
}

.related-system-card {
  position: relative;
  min-height: 235px;
  background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid #e5e7eb;
  border-radius: 24px;
  padding: 28px;
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.related-system-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11, 44, 85, 0.97), rgba(35, 53, 64, 0.97));
  opacity: 0;
  transition: opacity 0.25s ease;
  z-index: 0;
}

.related-system-card::after {
  content: "";
  position: absolute;
  width: 118px;
  height: 118px;
  right: -42px;
  top: -42px;
  border-radius: 999px;
  background-color: rgba(227, 6, 19, 0.12);
  z-index: 1;
}

.related-system-number,
.related-system-content {
  position: relative;
  z-index: 2;
}

.related-system-number {
  width: 48px;
  height: 48px;
  border-radius: 15px;
  background-color: #0b2c55;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 900;
  margin-bottom: 22px;
  transition: background-color 0.25s ease;
}

.related-system-content h3 {
  font-size: 25px;
  line-height: 1.25;
  font-weight: 850;
  color: #0b2c55;
  margin-bottom: 12px;
  transition: color 0.25s ease;
}

.related-system-content p {
  font-size: 15px;
  line-height: 1.75;
  color: #4b5563;
  margin-bottom: 22px;
  transition: color 0.25s ease;
}

.related-system-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  background-color: #ff304f;
  color: #ffffff;
  border-radius: 999px;
  padding: 11px 18px;
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.2px;
  transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.related-system-link::before {
  content: "›";
  font-size: 21px;
  line-height: 1;
  margin-right: 7px;
  font-weight: 900;
}
/* =========================
   SHUTTER SYSTEMS PAGE
========================= */
.shutter-systems-page {
  background-color: #f3f5f7;
  color: #1f2937;
  overflow-x: hidden;
}

.shutter-systems-page .container {
  width: 92%;
  max-width: 1280px;
  margin: 0 auto;
}

/* HERO */
.shutter-systems-hero {
  padding: 25px 0 28px;
  background:
    radial-gradient(circle at top right, rgba(227, 6, 19, 0.08), transparent 30%),
    linear-gradient(180deg, #f3f5f7 0%, #eef2f5 100%);
  border-top: 1px solid #e5e7eb;
}

.shutter-systems-hero-content {
  max-width: 760px;
}

.shutter-systems-eyebrow {
  display: inline-flex;
  align-items: center;
  color: #e30613;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.shutter-systems-hero h1 {
  font-size: clamp(25px, 2.5vw, 48px);
  line-height: 1.08;
  font-weight: 900;
  color: #0b2c55;
  margin-bottom: 14px;
}

.shutter-systems-hero p {
  font-size: 15px;
  line-height: 1.8;
  color: #4b5563;
  max-width: 900px;
}

/* CONTENT */
.shutter-systems-content-section {
  padding: 10px 0 72px;
}

.shutter-systems-section-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.shutter-systems-section-card {
  background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
  border: 1px solid #e5e7eb;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.05);
}

.shutter-systems-feature-card {
  border-left: 6px solid #e30613;
}

.shutter-systems-section-heading {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.shutter-systems-section-number {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 15px;
  background-color: #0b2c55;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
}

.shutter-systems-section-heading h2 {
  font-size: 25px;
  line-height: 1.2;
  font-weight: 850;
  color: #0b2c55;
  margin: 0;
}

.shutter-systems-section-card p {
  font-size: 15.5px;
  line-height: 1.9;
  color: #4b5563;
  margin: 0;
}

.shutter-systems-section-card p + p {
  margin-top: 18px;
}

.shutter-systems-note {
  font-weight: 700;
  color: #0b2c55;
  margin-bottom: 18px !important;
}

/* GALLERY */
.shutter-systems-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 260px));
  justify-content: flex-start;
  gap: 16px;
  margin-top: 20px;
}

.shutter-systems-gallery-item {
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4 / 2.7;
  display: flex;
  align-items: center;
  justify-content: center;
}

.shutter-systems-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  background: #ffffff;
}

/* COLOR OPTIONS */
.shutter-color-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 140px));
  gap: 14px;
  margin-top: 20px;
  justify-content: flex-start;
}

.shutter-color-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 14px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  color: #374151;
}

.shutter-color-swatch {
  width: 100%;
  max-width: 72px;
  height: 72px;
  border-radius: 12px;
  display: block;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.shutter-color-swatch.beech {
  background: linear-gradient(135deg, #c89262, #ddb08b);
}

.shutter-color-swatch.pine {
  background: linear-gradient(135deg, #9b5b2d, #c7773b);
}

.shutter-color-swatch.golden-oak {
  background: linear-gradient(135deg, #9a5e21, #c98b46);
}

.shutter-color-swatch.knotted-oak {
  background: linear-gradient(135deg, #6f3c18, #8a5228);
}

.shutter-color-swatch.knotted-mahogany {
  background: linear-gradient(135deg, #6b1f1f, #8d2f2f);
}

/* FEATURE LIST */
.shutter-feature-list {
  margin: 0;
  padding-left: 20px;
}

.shutter-feature-list li {
  color: #4b5563;
  font-size: 15.5px;
  line-height: 1.85;
  margin-bottom: 10px;
}

.shutter-feature-list li:last-child {
  margin-bottom: 0;
}
/* =========================
   ROLLER SHUTTER SYSTEMS PAGE
========================= */
.roller-shutter-page {
  background-color: #f3f5f7;
  color: #1f2937;
  overflow-x: hidden;
}

.roller-shutter-page .container {
  width: 92%;
  max-width: 1280px;
  margin: 0 auto;
}

/* HERO */
.roller-shutter-hero {
  padding: 25px 0 28px;
  background:
    radial-gradient(circle at top right, rgba(227, 6, 19, 0.08), transparent 30%),
    linear-gradient(180deg, #f3f5f7 0%, #eef2f5 100%);
  border-top: 1px solid #e5e7eb;
}

.roller-shutter-hero-content {
  max-width: 760px;
}

.roller-shutter-eyebrow {
  display: inline-flex;
  align-items: center;
  color: #e30613;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.roller-shutter-hero h1 {
  font-size: clamp(25px, 2.5vw, 48px);
  line-height: 1.08;
  font-weight: 900;
  color: #0b2c55;
  margin-bottom: 14px;
}

.roller-shutter-hero p {
  font-size: 15px;
  line-height: 1.8;
  color: #4b5563;
  max-width: 900px;
}

/* CONTENT */
.roller-shutter-content-section {
  padding: 10px 0 72px;
}

.roller-shutter-section-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.roller-shutter-section-card {
  background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
  border: 1px solid #e5e7eb;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.05);
}

.roller-shutter-feature-card {
  border-left: 6px solid #e30613;
}

.roller-shutter-section-heading {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.roller-shutter-section-number {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 15px;
  background-color: #0b2c55;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
}

.roller-shutter-section-heading h2 {
  font-size: 25px;
  line-height: 1.2;
  font-weight: 850;
  color: #0b2c55;
  margin: 0;
}

.roller-shutter-section-card p {
  font-size: 15.5px;
  line-height: 1.9;
  color: #4b5563;
  margin: 0;
}

.roller-shutter-section-card p + p {
  margin-top: 18px;
}

.roller-shutter-note {
  font-weight: 700;
  color: #0b2c55;
  margin-bottom: 18px !important;
}

/* GALLERY */
.roller-shutter-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 230px));
  justify-content: flex-start;
  gap: 16px;
  margin-top: 20px;
}

.roller-shutter-gallery-item {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4 / 2.8;
  display: flex;
  align-items: center;
  justify-content: center;
}

.roller-shutter-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  background-color: #ffffff;
}

/* COLOR OPTIONS */
.roller-color-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 140px));
  gap: 14px;
  margin-top: 20px;
  justify-content: flex-start;
}

.roller-color-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 14px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  color: #374151;
}

.roller-color-swatch {
  width: 100%;
  max-width: 72px;
  height: 72px;
  border-radius: 12px;
  display: block;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.roller-color-swatch.beech {
  background: linear-gradient(135deg, #c89262, #ddb08b);
}

.roller-color-swatch.pine {
  background: linear-gradient(135deg, #9b5b2d, #c7773b);
}

.roller-color-swatch.golden-oak {
  background: linear-gradient(135deg, #9a5e21, #c98b46);
}

.roller-color-swatch.knotted-oak {
  background: linear-gradient(135deg, #6f3c18, #8a5228);
}

.roller-color-swatch.knotted-mahogany {
  background: linear-gradient(135deg, #6b1f1f, #8d2f2f);
}

/* FEATURE LIST */
.roller-feature-list {
  margin: 0;
  padding-left: 20px;
}

.roller-feature-list li {
  color: #4b5563;
  font-size: 15.5px;
  line-height: 1.85;
  margin-bottom: 10px;
}

.roller-feature-list li:last-child {
  margin-bottom: 0;
}

/* =========================
   WINDOW SYSTEMS SECTION
========================= */
.window-systems-section {
  padding: 34px 0 78px;
  background-color: #f3f5f7;
  overflow-x: hidden;
}

.window-systems-section .container {
  width: 92%;
  max-width: 1280px;
  margin: 0 auto;
}

.window-systems-header {
  max-width: 760px;
  margin-bottom: 28px;
}

.window-systems-eyebrow {
  display: inline-flex;
  align-items: center;
  color: #e30613;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.window-systems-header h2 {
  font-size: clamp(25px, 2.5vw, 44px);
  line-height: 1.1;
  font-weight: 900;
  color: #0b2c55;
  margin-bottom: 12px;
}

.window-systems-header p {
  font-size: 15px;
  line-height: 1.8;
  color: #4b5563;
  max-width: 760px;
}

/* GRID */
.window-systems-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 360px));
  gap: 24px;
  justify-content: flex-start;
}

/* CARD */
.window-system-card {
  position: relative;
  min-height: 245px;
  background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid #e5e7eb;
  border-radius: 24px;
  padding: 26px;
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.window-system-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11, 44, 85, 0.97), rgba(35, 53, 64, 0.97));
  opacity: 0;
  transition: opacity 0.25s ease;
  z-index: 0;
}

.window-system-card::after {
  content: "";
  position: absolute;
  width: 112px;
  height: 112px;
  right: -40px;
  top: -40px;
  border-radius: 999px;
  background-color: rgba(227, 6, 19, 0.12);
  z-index: 1;
}

.window-system-number,
.window-system-content {
  position: relative;
  z-index: 2;
}

.window-system-number {
  width: 48px;
  height: 48px;
  border-radius: 15px;
  background-color: #0b2c55;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 900;
  margin-bottom: 22px;
  transition: background-color 0.25s ease;
}

.window-system-content h3 {
  font-size: 24px;
  line-height: 1.25;
  font-weight: 850;
  color: #0b2c55;
  margin-bottom: 12px;
  transition: color 0.25s ease;
}

.window-system-content p {
  font-size: 15px;
  line-height: 1.7;
  color: #4b5563;
  margin-bottom: 22px;
  transition: color 0.25s ease;
}

.window-system-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  background-color: #ff304f;
  color: #ffffff;
  border-radius: 999px;
  padding: 11px 18px;
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.2px;
  transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.window-system-link::before {
  content: "›";
  font-size: 21px;
  line-height: 1;
  margin-right: 7px;
  font-weight: 900;
}
/* =========================
   PIVOT WINDOWS PAGE
========================= */
.pivot-windows-page {
  background-color: #f3f5f7;
  color: #1f2937;
  overflow-x: hidden;
}

.pivot-windows-page .container {
  width: 92%;
  max-width: 1280px;
  margin: 0 auto;
}

/* HERO */
.pivot-windows-hero {
  padding: 25px 0 28px;
  background:
    radial-gradient(circle at top right, rgba(227, 6, 19, 0.08), transparent 30%),
    linear-gradient(180deg, #f3f5f7 0%, #eef2f5 100%);
  border-top: 1px solid #e5e7eb;
}

.pivot-windows-hero-content {
  max-width: 760px;
}

.pivot-windows-eyebrow {
  display: inline-flex;
  align-items: center;
  color: #e30613;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.pivot-windows-hero h1 {
  font-size: clamp(25px, 2.5vw, 48px);
  line-height: 1.08;
  font-weight: 900;
  color: #0b2c55;
  margin-bottom: 14px;
}

.pivot-windows-hero p {
  font-size: 15px;
  line-height: 1.8;
  color: #4b5563;
  max-width: 900px;
}

/* CONTENT */
.pivot-windows-content-section {
  padding: 10px 0 72px;
}

.pivot-windows-section-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.pivot-windows-section-card {
  background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
  border: 1px solid #e5e7eb;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.05);
}

.pivot-windows-feature-card {
  border-left: 6px solid #e30613;
}

.pivot-windows-section-heading {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.pivot-windows-section-number {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 15px;
  background-color: #0b2c55;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
}

.pivot-windows-section-heading h2 {
  font-size: 25px;
  line-height: 1.2;
  font-weight: 850;
  color: #0b2c55;
  margin: 0;
}

.pivot-windows-section-card p {
  font-size: 15.5px;
  line-height: 1.9;
  color: #4b5563;
  margin: 0;
}

.pivot-windows-section-card p + p {
  margin-top: 18px;
}

/* GALLERY */
.pivot-windows-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 240px));
  justify-content: flex-start;
  gap: 16px;
  margin-top: 20px;
}

.pivot-windows-gallery-item {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4 / 2.7;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pivot-windows-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  background: #ffffff;
}

/* FORM CARDS */
.pivot-form-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 20px;
}

.pivot-form-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  padding: 18px;
}

.pivot-form-icon {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background-color: #0b2c55;
  color: #ffffff;
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 14px;
}

.pivot-form-card h3 {
  font-size: 18px;
  line-height: 1.3;
  color: #0b2c55;
  margin-bottom: 8px;
}

.pivot-form-card p {
  font-size: 14.5px;
  line-height: 1.7;
  color: #4b5563;
}

/* COLORS */
.pivot-color-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 140px));
  gap: 14px;
  margin-top: 20px;
  justify-content: flex-start;
}

.pivot-color-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 14px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  color: #374151;
}

.pivot-color-swatch {
  width: 100%;
  max-width: 72px;
  height: 72px;
  border-radius: 12px;
  display: block;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.pivot-color-swatch.beech {
  background: linear-gradient(135deg, #c89262, #ddb08b);
}

.pivot-color-swatch.pine {
  background: linear-gradient(135deg, #9b5b2d, #c7773b);
}

.pivot-color-swatch.golden-oak {
  background: linear-gradient(135deg, #9a5e21, #c98b46);
}

.pivot-color-swatch.knotted-oak {
  background: linear-gradient(135deg, #6f3c18, #8a5228);
}

.pivot-color-swatch.knotted-mahogany {
  background: linear-gradient(135deg, #6b1f1f, #8d2f2f);
}

/* FEATURE LIST */
.pivot-feature-list {
  margin: 0;
  padding-left: 20px;
}

.pivot-feature-list li {
  color: #4b5563;
  font-size: 15.5px;
  line-height: 1.85;
  margin-bottom: 10px;
}

.pivot-feature-list li:last-child {
  margin-bottom: 0;
}

/* =========================
   SLIDING SERIES PAGE
========================= */
.sliding-series-page {
  background-color: #f3f5f7;
  color: #1f2937;
  overflow-x: hidden;
}

.sliding-series-page .container {
  width: 92%;
  max-width: 1280px;
  margin: 0 auto;
}

/* HERO */
.sliding-series-hero {
  padding: 25px 0 28px;
  background:
    radial-gradient(circle at top right, rgba(227, 6, 19, 0.08), transparent 30%),
    linear-gradient(180deg, #f3f5f7 0%, #eef2f5 100%);
  border-top: 1px solid #e5e7eb;
}

.sliding-series-hero-content {
  max-width: 760px;
}

.sliding-series-eyebrow {
  display: inline-flex;
  align-items: center;
  color: #e30613;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.sliding-series-hero h1 {
  font-size: clamp(25px, 2.5vw, 48px);
  line-height: 1.08;
  font-weight: 900;
  color: #0b2c55;
  margin-bottom: 14px;
}

.sliding-series-hero p {
  font-size: 15px;
  line-height: 1.8;
  color: #4b5563;
  max-width: 900px;
}

/* CONTENT */
.sliding-series-content-section {
  padding: 10px 0 72px;
}

.sliding-series-section-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.sliding-series-section-card {
  background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
  border: 1px solid #e5e7eb;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.05);
}

.sliding-series-feature-card {
  border-left: 6px solid #e30613;
}

.sliding-series-section-heading {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.sliding-series-section-number {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 15px;
  background-color: #0b2c55;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
}

.sliding-series-section-heading h2 {
  font-size: 25px;
  line-height: 1.2;
  font-weight: 850;
  color: #0b2c55;
  margin: 0;
}

.sliding-series-section-card p {
  font-size: 15.5px;
  line-height: 1.9;
  color: #4b5563;
  margin: 0;
}

.sliding-series-section-card p + p {
  margin-top: 18px;
}

/* GALLERY */
.sliding-series-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 250px));
  justify-content: flex-start;
  gap: 16px;
  margin-top: 20px;
}

.sliding-series-gallery-item {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4 / 2.7;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sliding-series-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  background: #ffffff;
}

/* USAGE CARDS */
.sliding-usage-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 20px;
}

.sliding-usage-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  padding: 18px;
}

.sliding-usage-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background-color: #0b2c55;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 14px;
}

.sliding-usage-card h3 {
  font-size: 18px;
  line-height: 1.3;
  color: #0b2c55;
  margin-bottom: 8px;
}

.sliding-usage-card p {
  font-size: 14.5px;
  line-height: 1.7;
  color: #4b5563;
}

/* FEATURE LIST */
.sliding-feature-list {
  margin: 0;
  padding-left: 20px;
}

.sliding-feature-list li {
  color: #4b5563;
  font-size: 15.5px;
  line-height: 1.85;
  margin-bottom: 10px;
}

.sliding-feature-list li:last-child {
  margin-bottom: 0;
}
/* =========================
   FOLDING SYSTEMS PAGE
========================= */
.folding-systems-page {
  background-color: #f3f5f7;
  color: #1f2937;
  overflow-x: hidden;
}

.folding-systems-page .container {
  width: 92%;
  max-width: 1280px;
  margin: 0 auto;
}

/* HERO */
.folding-systems-hero {
  padding: 25px 0 28px;
  background:
    radial-gradient(circle at top right, rgba(227, 6, 19, 0.08), transparent 30%),
    linear-gradient(180deg, #f3f5f7 0%, #eef2f5 100%);
  border-top: 1px solid #e5e7eb;
}

.folding-systems-hero-content {
  max-width: 820px;
}

.folding-systems-eyebrow {
  display: inline-flex;
  align-items: center;
  color: #e30613;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.folding-systems-hero h1 {
  font-size: clamp(25px, 2.5vw, 48px);
  line-height: 1.08;
  font-weight: 900;
  color: #0b2c55;
  margin-bottom: 14px;
}

.folding-systems-hero p {
  font-size: 15px;
  line-height: 1.8;
  color: #4b5563;
  max-width: 900px;
}

/* CONTENT */
.folding-systems-content-section {
  padding: 10px 0 72px;
}

.folding-systems-section-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.folding-systems-section-card {
  background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
  border: 1px solid #e5e7eb;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.05);
}

.folding-systems-feature-card {
  border-left: 6px solid #e30613;
}

.folding-systems-section-heading {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.folding-systems-section-number {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 15px;
  background-color: #0b2c55;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
}

.folding-systems-section-heading h2 {
  font-size: 25px;
  line-height: 1.2;
  font-weight: 850;
  color: #0b2c55;
  margin: 0;
}

.folding-systems-section-card p {
  font-size: 15.5px;
  line-height: 1.9;
  color: #4b5563;
  margin: 0;
}

.folding-systems-section-card p + p {
  margin-top: 18px;
}

/* GALLERY */
.folding-systems-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 250px));
  justify-content: flex-start;
  gap: 16px;
  margin-top: 20px;
}

.folding-systems-gallery-item {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4 / 2.7;
  display: flex;
  align-items: center;
  justify-content: center;
}

.folding-systems-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  background: #ffffff;
}

/* USAGE CARDS */
.folding-usage-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 20px;
}

.folding-usage-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  padding: 18px;
}

.folding-usage-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background-color: #0b2c55;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 14px;
}

.folding-usage-card h3 {
  font-size: 18px;
  line-height: 1.3;
  color: #0b2c55;
  margin-bottom: 8px;
}

.folding-usage-card p {
  font-size: 14.5px;
  line-height: 1.7;
  color: #4b5563;
}

/* COLORS */
.folding-color-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 140px));
  gap: 14px;
  margin-top: 20px;
  justify-content: flex-start;
}

.folding-color-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 14px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  color: #374151;
}

.folding-color-swatch {
  width: 100%;
  max-width: 72px;
  height: 72px;
  border-radius: 12px;
  display: block;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.folding-color-swatch.beech {
  background: linear-gradient(135deg, #c89262, #ddb08b);
}

.folding-color-swatch.pine {
  background: linear-gradient(135deg, #9b5b2d, #c7773b);
}

.folding-color-swatch.golden-oak {
  background: linear-gradient(135deg, #9a5e21, #c98b46);
}

.folding-color-swatch.knotted-oak {
  background: linear-gradient(135deg, #6f3c18, #8a5228);
}

.folding-color-swatch.knotted-mahogany {
  background: linear-gradient(135deg, #6b1f1f, #8d2f2f);
}

/* FEATURE LIST */
.folding-feature-list {
  margin: 0;
  padding-left: 20px;
}

.folding-feature-list li {
  color: #4b5563;
  font-size: 15.5px;
  line-height: 1.85;
  margin-bottom: 10px;
}

.folding-feature-list li:last-child {
  margin-bottom: 0;
}
/* =========================
   PULL SLIDE SYSTEMS PAGE
========================= */
.pull-slide-page {
  background-color: #f3f5f7;
  color: #1f2937;
  overflow-x: hidden;
}

.pull-slide-page .container {
  width: 92%;
  max-width: 1280px;
  margin: 0 auto;
}

/* HERO */
.pull-slide-hero {
  padding: 25px 0 28px;
  background:
    radial-gradient(circle at top right, rgba(227, 6, 19, 0.08), transparent 30%),
    linear-gradient(180deg, #f3f5f7 0%, #eef2f5 100%);
  border-top: 1px solid #e5e7eb;
}

.pull-slide-hero-content {
  max-width: 820px;
}

.pull-slide-eyebrow {
  display: inline-flex;
  align-items: center;
  color: #e30613;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.pull-slide-hero h1 {
  font-size: clamp(25px, 2.5vw, 48px);
  line-height: 1.08;
  font-weight: 900;
  color: #0b2c55;
  margin-bottom: 14px;
}

.pull-slide-hero p {
  font-size: 15px;
  line-height: 1.8;
  color: #4b5563;
  max-width: 900px;
}

/* CONTENT */
.pull-slide-content-section {
  padding: 10px 0 72px;
}

.pull-slide-section-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.pull-slide-section-card {
  background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
  border: 1px solid #e5e7eb;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.05);
}

.pull-slide-feature-card {
  border-left: 6px solid #e30613;
}

.pull-slide-section-heading {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.pull-slide-section-number {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 15px;
  background-color: #0b2c55;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
}

.pull-slide-section-heading h2 {
  font-size: 25px;
  line-height: 1.2;
  font-weight: 850;
  color: #0b2c55;
  margin: 0;
}

.pull-slide-section-card p {
  font-size: 15.5px;
  line-height: 1.9;
  color: #4b5563;
  margin: 0;
}

.pull-slide-section-card p + p {
  margin-top: 18px;
}

/* GALLERY */
.pull-slide-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 250px));
  justify-content: flex-start;
  gap: 16px;
  margin-top: 20px;
}

.pull-slide-gallery-item {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4 / 2.7;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pull-slide-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  background: #ffffff;
}

/* USAGE CARDS */
.pull-slide-usage-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 20px;
}

.pull-slide-usage-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  padding: 18px;
}

.pull-slide-usage-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background-color: #0b2c55;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 14px;
}

.pull-slide-usage-card h3 {
  font-size: 18px;
  line-height: 1.3;
  color: #0b2c55;
  margin-bottom: 8px;
}

.pull-slide-usage-card p {
  font-size: 14.5px;
  line-height: 1.7;
  color: #4b5563;
}

/* COLORS */
.pull-slide-color-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 140px));
  gap: 14px;
  margin-top: 20px;
  justify-content: flex-start;
}

.pull-slide-color-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 14px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  color: #374151;
}

.pull-slide-color-swatch {
  width: 100%;
  max-width: 72px;
  height: 72px;
  border-radius: 12px;
  display: block;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.pull-slide-color-swatch.beech {
  background: linear-gradient(135deg, #c89262, #ddb08b);
}

.pull-slide-color-swatch.pine {
  background: linear-gradient(135deg, #9b5b2d, #c7773b);
}

.pull-slide-color-swatch.golden-oak {
  background: linear-gradient(135deg, #9a5e21, #c98b46);
}

.pull-slide-color-swatch.knotted-oak {
  background: linear-gradient(135deg, #6f3c18, #8a5228);
}

.pull-slide-color-swatch.knotted-mahogany {
  background: linear-gradient(135deg, #6b1f1f, #8d2f2f);
}

/* FEATURE LIST */
.pull-slide-feature-list {
  margin: 0;
  padding-left: 20px;
}

.pull-slide-feature-list li {
  color: #4b5563;
  font-size: 15.5px;
  line-height: 1.85;
  margin-bottom: 10px;
}

.pull-slide-feature-list li:last-child {
  margin-bottom: 0;
}
/* =========================
   GUILLOTINE WINDOWS PAGE
========================= */
.guillotine-windows-page {
  background-color: #f3f5f7;
  color: #1f2937;
  overflow-x: hidden;
}

.guillotine-windows-page .container {
  width: 92%;
  max-width: 1280px;
  margin: 0 auto;
}

/* HERO */
.guillotine-windows-hero {
  padding: 25px 0 28px;
  background:
    radial-gradient(circle at top right, rgba(227, 6, 19, 0.08), transparent 30%),
    linear-gradient(180deg, #f3f5f7 0%, #eef2f5 100%);
  border-top: 1px solid #e5e7eb;
}

.guillotine-windows-hero-content {
  max-width: 820px;
}

.guillotine-windows-eyebrow {
  display: inline-flex;
  align-items: center;
  color: #e30613;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.guillotine-windows-hero h1 {
  font-size: clamp(25px, 2.5vw, 48px);
  line-height: 1.08;
  font-weight: 900;
  color: #0b2c55;
  margin-bottom: 14px;
}

.guillotine-windows-hero p {
  font-size: 15px;
  line-height: 1.8;
  color: #4b5563;
  max-width: 900px;
}

/* CONTENT */
.guillotine-windows-content-section {
  padding: 10px 0 72px;
}

.guillotine-windows-section-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.guillotine-windows-section-card {
  background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
  border: 1px solid #e5e7eb;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.05);
}

.guillotine-windows-feature-card {
  border-left: 6px solid #e30613;
}

.guillotine-windows-section-heading {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.guillotine-windows-section-number {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 15px;
  background-color: #0b2c55;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
}

.guillotine-windows-section-heading h2 {
  font-size: 25px;
  line-height: 1.2;
  font-weight: 850;
  color: #0b2c55;
  margin: 0;
}

.guillotine-windows-section-card p {
  font-size: 15.5px;
  line-height: 1.9;
  color: #4b5563;
  margin: 0;
}

.guillotine-windows-section-card p + p {
  margin-top: 18px;
}

/* GALLERY */
.guillotine-windows-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 250px));
  justify-content: flex-start;
  gap: 16px;
  margin-top: 20px;
}

.guillotine-windows-gallery-item {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4 / 2.7;
  display: flex;
  align-items: center;
  justify-content: center;
}

.guillotine-windows-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  background: #ffffff;
}

/* USAGE CARDS */
.guillotine-usage-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 20px;
}

.guillotine-usage-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  padding: 18px;
}

.guillotine-usage-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background-color: #0b2c55;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 14px;
}

.guillotine-usage-card h3 {
  font-size: 18px;
  line-height: 1.3;
  color: #0b2c55;
  margin-bottom: 8px;
}

.guillotine-usage-card p {
  font-size: 14.5px;
  line-height: 1.7;
  color: #4b5563;
}

/* COLORS */
.guillotine-color-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 140px));
  gap: 14px;
  margin-top: 20px;
  justify-content: flex-start;
}

.guillotine-color-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 14px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  color: #374151;
}

.guillotine-color-swatch {
  width: 100%;
  max-width: 72px;
  height: 72px;
  border-radius: 12px;
  display: block;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.guillotine-color-swatch.beech {
  background: linear-gradient(135deg, #c89262, #ddb08b);
}

.guillotine-color-swatch.pine {
  background: linear-gradient(135deg, #9b5b2d, #c7773b);
}

.guillotine-color-swatch.golden-oak {
  background: linear-gradient(135deg, #9a5e21, #c98b46);
}

.guillotine-color-swatch.knotted-oak {
  background: linear-gradient(135deg, #6f3c18, #8a5228);
}

.guillotine-color-swatch.knotted-mahogany {
  background: linear-gradient(135deg, #6b1f1f, #8d2f2f);
}

/* FEATURE LIST */
.guillotine-feature-list {
  margin: 0;
  padding-left: 20px;
}

.guillotine-feature-list li {
  color: #4b5563;
  font-size: 15.5px;
  line-height: 1.85;
  margin-bottom: 10px;
}

.guillotine-feature-list li:last-child {
  margin-bottom: 0;
}
/* =========================
   ALUMINIUM SYSTEMS PAGE
========================= */
.aluminium-systems-page {
  background-color: #f3f5f7;
  color: #1f2937;
  overflow-x: hidden;
}

.aluminium-systems-page .container {
  width: 92%;
  max-width: 1280px;
  margin: 0 auto;
}

/* HERO */
.aluminium-systems-hero {
  padding: 25px 0 28px;
  background:
    radial-gradient(circle at top right, rgba(227, 6, 19, 0.08), transparent 30%),
    linear-gradient(180deg, #f3f5f7 0%, #eef2f5 100%);
  border-top: 1px solid #e5e7eb;
}

.aluminium-systems-hero-content {
  max-width: 820px;
}

.aluminium-systems-eyebrow {
  display: inline-flex;
  align-items: center;
  color: #e30613;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.aluminium-systems-hero h1 {
  font-size: clamp(25px, 2.5vw, 48px);
  line-height: 1.08;
  font-weight: 900;
  color: #0b2c55;
  margin-bottom: 14px;
}

.aluminium-systems-hero p {
  font-size: 15px;
  line-height: 1.8;
  color: #4b5563;
  max-width: 900px;
}

/* CONTENT */
.aluminium-systems-content-section {
  padding: 10px 0 72px;
}

.aluminium-systems-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* CARD */
.aluminium-system-card {
  background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
  border: 1px solid #e5e7eb;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.05);
}

.aluminium-feature-card {
  border-left: 6px solid #e30613;
}

.aluminium-system-heading {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.aluminium-system-number {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 15px;
  background-color: #0b2c55;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
}

.aluminium-system-heading h2 {
  font-size: 26px;
  line-height: 1.2;
  font-weight: 900;
  color: #0b2c55;
  margin: 0 0 4px;
}

.aluminium-system-heading p {
  font-size: 14.5px;
  line-height: 1.5;
  color: #64748b;
  margin: 0;
}

/* BODY */
.aluminium-system-body {
  display: grid;
  grid-template-columns: 290px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.aluminium-system-image {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  overflow: hidden;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.aluminium-system-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  background: #ffffff;
}

.aluminium-system-content h3 {
  font-size: 18px;
  line-height: 1.3;
  color: #0b2c55;
  margin: 0 0 12px;
  font-weight: 850;
}

.aluminium-system-content p {
  font-size: 15px;
  line-height: 1.85;
  color: #4b5563;
  margin: 0;
}

.aluminium-system-content ul {
  margin: 0;
  padding-left: 20px;
}

.aluminium-system-content li {
  color: #4b5563;
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 8px;
}

.aluminium-system-content li:last-child {
  margin-bottom: 0;
}

/* SPEC GRID */
.aluminium-spec-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.aluminium-spec-grid span {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 11px 13px;
  color: #374151;
  font-size: 14px;
  line-height: 1.45;
  font-weight: 650;
}
/* =========================
   FACADE SYSTEMS PAGE
========================= */
.facade-systems-page {
  background-color: #f3f5f7;
  color: #1f2937;
  overflow-x: hidden;
}

.facade-systems-page .container {
  width: 92%;
  max-width: 1280px;
  margin: 0 auto;
}

/* HERO */
.facade-systems-hero {
  padding: 25px 0 28px;
  background:
    radial-gradient(circle at top right, rgba(227, 6, 19, 0.08), transparent 30%),
    linear-gradient(180deg, #f3f5f7 0%, #eef2f5 100%);
  border-top: 1px solid #e5e7eb;
}

.facade-systems-hero-content {
  max-width: 820px;
}

.facade-systems-eyebrow {
  display: inline-flex;
  align-items: center;
  color: #e30613;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.facade-systems-hero h1 {
  font-size: clamp(25px, 2.5vw, 48px);
  line-height: 1.08;
  font-weight: 900;
  color: #0b2c55;
  margin-bottom: 14px;
}

.facade-systems-hero p {
  font-size: 15px;
  line-height: 1.8;
  color: #4b5563;
  max-width: 900px;
}

/* CONTENT */
.facade-systems-content-section {
  padding: 10px 0 72px;
}

.facade-systems-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* CARD */
.facade-system-card {
  background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
  border: 1px solid #e5e7eb;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.05);
}

.facade-feature-card {
  border-left: 6px solid #e30613;
}

.facade-system-heading {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.facade-system-number {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 15px;
  background-color: #0b2c55;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
}

.facade-system-heading h2 {
  font-size: 26px;
  line-height: 1.2;
  font-weight: 900;
  color: #0b2c55;
  margin: 0 0 4px;
}

.facade-system-heading p {
  font-size: 14.5px;
  line-height: 1.5;
  color: #64748b;
  margin: 0;
}

/* BODY */
.facade-system-body {
  display: grid;
  grid-template-columns: 310px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.facade-system-image {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  overflow: hidden;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.facade-system-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  background: #ffffff;
}

.facade-system-content h3 {
  font-size: 18px;
  line-height: 1.3;
  color: #0b2c55;
  margin: 0 0 12px;
  font-weight: 850;
}

.facade-system-content ul {
  margin: 0;
  padding-left: 20px;
}

.facade-system-content li {
  color: #4b5563;
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 8px;
}

.facade-system-content li:last-child {
  margin-bottom: 0;
}

.facade-system-label {
  font-size: 15px;
  line-height: 1.7;
  color: #0b2c55;
  font-weight: 800;
  margin: 0 0 10px;
}
/* =========================
   COTTA PAGE
========================= */
.cotta-page {
  background-color: #f3f5f7;
  color: #1f2937;
  overflow-x: hidden;
}

.cotta-page .container {
  width: 92%;
  max-width: 1280px;
  margin: 0 auto;
}

/* HERO */
.cotta-hero {
  padding: 25px 0 28px;
  background:
    radial-gradient(circle at top right, rgba(227, 6, 19, 0.08), transparent 30%),
    linear-gradient(180deg, #f3f5f7 0%, #eef2f5 100%);
  border-top: 1px solid #e5e7eb;
}

.cotta-hero-content {
  max-width: 820px;
}

.cotta-eyebrow {
  display: inline-flex;
  align-items: center;
  color: #e30613;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.cotta-hero h1 {
  font-size: clamp(25px, 2.5vw, 48px);
  line-height: 1.08;
  font-weight: 900;
  color: #0b2c55;
  margin-bottom: 14px;
}

.cotta-hero p {
  font-size: 15px;
  line-height: 1.8;
  color: #4b5563;
  max-width: 900px;
}

/* CONTENT */
.cotta-content-section {
  padding: 10px 0 72px;
}

.cotta-section-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* CARD */
.cotta-section-card {
  background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
  border: 1px solid #e5e7eb;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.05);
}

.cotta-feature-card {
  border-left: 6px solid #e30613;
}

.cotta-section-heading {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.cotta-section-number {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 15px;
  background-color: #0b2c55;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
}

.cotta-section-heading h2 {
  font-size: 26px;
  line-height: 1.2;
  font-weight: 900;
  color: #0b2c55;
  margin: 0 0 4px;
}

.cotta-section-heading p {
  font-size: 14.5px;
  line-height: 1.5;
  color: #64748b;
  margin: 0;
}

/* OVERVIEW */
.cotta-overview-layout {
  display: grid;
  grid-template-columns: 290px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.cotta-main-image {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  overflow: hidden;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cotta-main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #ffffff;
}

.cotta-overview-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cotta-overview-content p {
  font-size: 15px;
  line-height: 1.85;
  color: #4b5563;
  margin: 0;
}

/* FEATURE LIST */
.cotta-feature-list {
  margin: 0;
  padding-left: 20px;
}

.cotta-feature-list li {
  color: #4b5563;
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 8px;
}

.cotta-feature-list li:last-child {
  margin-bottom: 0;
}

/* GALLERY */
.cotta-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 250px));
  justify-content: flex-start;
  gap: 16px;
  margin-top: 6px;
}

.cotta-gallery-item {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4 / 2.7;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cotta-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* =========================
   HANDRAIL PAGE
========================= */
.handrail-page {
  background-color: #f3f5f7;
  color: #1f2937;
  overflow-x: hidden;
}

.handrail-page .container {
  width: 92%;
  max-width: 1280px;
  margin: 0 auto;
}

/* HERO */
.handrail-hero {
  padding: 25px 0 28px;
  background:
    radial-gradient(circle at top right, rgba(227, 6, 19, 0.08), transparent 30%),
    linear-gradient(180deg, #f3f5f7 0%, #eef2f5 100%);
  border-top: 1px solid #e5e7eb;
}

.handrail-hero-content {
  max-width: 820px;
}

.handrail-eyebrow {
  display: inline-flex;
  align-items: center;
  color: #e30613;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.handrail-hero h1 {
  font-size: clamp(25px, 2.5vw, 48px);
  line-height: 1.08;
  font-weight: 900;
  color: #0b2c55;
  margin-bottom: 14px;
}

.handrail-hero p {
  font-size: 15px;
  line-height: 1.8;
  color: #4b5563;
  max-width: 900px;
}

/* CONTENT */
.handrail-content-section {
  padding: 10px 0 72px;
}

.handrail-section-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* CARD */
.handrail-section-card {
  background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
  border: 1px solid #e5e7eb;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.05);
}

.handrail-feature-card {
  border-left: 6px solid #e30613;
}

.handrail-section-heading {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.handrail-section-number {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 15px;
  background-color: #0b2c55;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
}

.handrail-section-heading h2 {
  font-size: 26px;
  line-height: 1.2;
  font-weight: 900;
  color: #0b2c55;
  margin: 0 0 4px;
}

.handrail-section-heading p {
  font-size: 14.5px;
  line-height: 1.5;
  color: #64748b;
  margin: 0;
}

/* OVERVIEW */
.handrail-overview-layout {
  display: grid;
  grid-template-columns: 290px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.handrail-main-image {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  overflow: hidden;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.handrail-main-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  background: #ffffff;
}

.handrail-overview-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.handrail-overview-content p {
  font-size: 15px;
  line-height: 1.85;
  color: #4b5563;
  margin: 0;
}

/* FEATURE LIST */
.handrail-feature-list {
  margin: 0;
  padding-left: 20px;
}

.handrail-feature-list li {
  color: #4b5563;
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 8px;
}

.handrail-feature-list li:last-child {
  margin-bottom: 0;
}

/* USAGE CARDS */
.handrail-usage-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 6px;
}

.handrail-usage-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  padding: 18px;
}

.handrail-usage-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background-color: #0b2c55;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 14px;
}

.handrail-usage-card h3 {
  font-size: 18px;
  line-height: 1.3;
  color: #0b2c55;
  margin-bottom: 8px;
}

.handrail-usage-card p {
  font-size: 14.5px;
  line-height: 1.7;
  color: #4b5563;
  margin: 0;
}
/* =========================
   SHUTTER CATEGORY PAGE
========================= */
.shutter-category-page {
  background-color: #f3f5f7;
  color: #1f2937;
  overflow-x: hidden;
}

.shutter-category-page .container {
  width: 92%;
  max-width: 1280px;
  margin: 0 auto;
}

/* HERO */
.shutter-category-hero {
  padding: 25px 0 28px;
  background:
    radial-gradient(circle at top right, rgba(227, 6, 19, 0.08), transparent 30%),
    linear-gradient(180deg, #f3f5f7 0%, #eef2f5 100%);
  border-top: 1px solid #e5e7eb;
}

.shutter-category-hero-content {
  max-width: 820px;
}

.shutter-category-eyebrow {
  display: inline-flex;
  align-items: center;
  color: #e30613;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.shutter-category-hero h1 {
  font-size: clamp(25px, 2.5vw, 48px);
  line-height: 1.08;
  font-weight: 900;
  color: #0b2c55;
  margin-bottom: 14px;
}

.shutter-category-hero p {
  font-size: 15px;
  line-height: 1.8;
  color: #4b5563;
  max-width: 900px;
}

/* SECTION */
.shutter-category-section {
  padding: 25px 0 78px;
}

.shutter-category-header {
  max-width: 760px;
  margin-bottom: 24px;
}

.shutter-category-header h2 {
  font-size: 30px;
  line-height: 1.2;
  font-weight: 900;
  color: #0b2c55;
  margin-bottom: 10px;
}

.shutter-category-header p {
  font-size: 15px;
  line-height: 1.75;
  color: #4b5563;
}

/* GRID */
.shutter-category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 360px));
  gap: 24px;
  justify-content: flex-start;
}

/* CARD */
.shutter-category-card {
  position: relative;
  min-height: 245px;
  background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid #e5e7eb;
  border-radius: 24px;
  padding: 26px;
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.shutter-category-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11, 44, 85, 0.97), rgba(35, 53, 64, 0.97));
  opacity: 0;
  transition: opacity 0.25s ease;
  z-index: 0;
}

.shutter-category-card::after {
  content: "";
  position: absolute;
  width: 112px;
  height: 112px;
  right: -40px;
  top: -40px;
  border-radius: 999px;
  background-color: rgba(227, 6, 19, 0.12);
  z-index: 1;
}

.shutter-card-number,
.shutter-card-content {
  position: relative;
  z-index: 2;
}

.shutter-card-number {
  width: 48px;
  height: 48px;
  border-radius: 15px;
  background-color: #0b2c55;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 900;
  margin-bottom: 22px;
  transition: background-color 0.25s ease;
}

.shutter-card-content h3 {
  font-size: 25px;
  line-height: 1.25;
  font-weight: 850;
  color: #0b2c55;
  margin-bottom: 12px;
  transition: color 0.25s ease;
}

.shutter-card-content p {
  font-size: 15px;
  line-height: 1.7;
  color: #4b5563;
  margin-bottom: 22px;
  transition: color 0.25s ease;
}

.shutter-card-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  background-color: #ff304f;
  color: #ffffff;
  border-radius: 999px;
  padding: 11px 18px;
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.2px;
  transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.shutter-card-link::before {
  content: "›";
  font-size: 21px;
  line-height: 1;
  margin-right: 7px;
  font-weight: 900;
}
/* =========================
   SHUTTER SUBCATEGORY PAGE
========================= */
.shutter-sub-page {
  background-color: #f3f5f7;
  color: #1f2937;
  overflow-x: hidden;
}

.shutter-sub-page .container {
  width: 92%;
  max-width: 1280px;
  margin: 0 auto;
}

/* HERO */
.shutter-sub-hero {
  padding: 25px 0 24px;
  background:
    radial-gradient(circle at top right, rgba(227, 6, 19, 0.08), transparent 30%),
    linear-gradient(180deg, #f3f5f7 0%, #eef2f5 100%);
  border-top: 1px solid #e5e7eb;
}

.shutter-sub-hero-content {
  max-width: 820px;
}

.shutter-sub-eyebrow {
  display: inline-flex;
  align-items: center;
  color: #e30613;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.shutter-sub-hero h1 {
  font-size: clamp(30px, 3vw, 48px);
  line-height: 1.08;
  font-weight: 900;
  color: #0b2c55;
  margin-bottom: 14px;
}

.shutter-sub-hero p {
  font-size: 15px;
  line-height: 1.8;
  color: #4b5563;
  max-width: 900px;
}

/* SECTION */
.shutter-sub-section {
  padding: 26px 0 78px;
}

.shutter-sub-header {
  max-width: 760px;
  margin-bottom: 24px;
}

.shutter-sub-header h2 {
  font-size: 28px;
  line-height: 1.2;
  font-weight: 900;
  color: #0b2c55;
  margin-bottom: 10px;
}

.shutter-sub-header p {
  font-size: 15px;
  line-height: 1.75;
  color: #4b5563;
}

/* GRID */
.shutter-sub-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 360px));
  gap: 24px;
  justify-content: flex-start;
}

/* CARD */
.shutter-sub-card {
  position: relative;
  min-height: 245px;
  background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid #e5e7eb;
  border-radius: 24px;
  padding: 26px;
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.shutter-sub-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11, 44, 85, 0.97), rgba(35, 53, 64, 0.97));
  opacity: 0;
  transition: opacity 0.25s ease;
  z-index: 0;
}

.shutter-sub-card::after {
  content: "";
  position: absolute;
  width: 112px;
  height: 112px;
  right: -40px;
  top: -40px;
  border-radius: 999px;
  background-color: rgba(227, 6, 19, 0.12);
  z-index: 1;
}

.shutter-sub-number,
.shutter-sub-content {
  position: relative;
  z-index: 2;
}

.shutter-sub-number {
  width: 48px;
  height: 48px;
  border-radius: 15px;
  background-color: #0b2c55;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 900;
  margin-bottom: 22px;
  transition: background-color 0.25s ease;
}

.shutter-sub-content h3 {
  font-size: 24px;
  line-height: 1.25;
  font-weight: 850;
  color: #0b2c55;
  margin-bottom: 12px;
  transition: color 0.25s ease;
}

.shutter-sub-content p {
  font-size: 15px;
  line-height: 1.7;
  color: #4b5563;
  margin-bottom: 22px;
  transition: color 0.25s ease;
}

.shutter-sub-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  background-color: #ff304f;
  color: #ffffff;
  border-radius: 999px;
  padding: 11px 18px;
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.2px;
  transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.shutter-sub-link::before {
  content: "›";
  font-size: 21px;
  line-height: 1;
  margin-right: 7px;
  font-weight: 900;
}
/* =========================
   ALUSEL PRODUCTS PAGE
========================= */
.alusel-products-page {
  background-color: #f3f5f7;
  color: #1f2937;
  overflow-x: hidden;
}

.alusel-products-page .container {
  width: 92%;
  max-width: 1280px;
  margin: 0 auto;
}

/* HERO */
.alusel-products-hero {
  padding: 25px 0 24px;
  background:
    radial-gradient(circle at top right, #f6dbe1 0%, transparent 30%),
    linear-gradient(180deg, #f3f5f7 0%, #eef2f5 100%);
  border-top: 1px solid #e5e7eb;
}

.alusel-products-hero-content {
  max-width: 820px;
}

.alusel-products-eyebrow {
  display: inline-flex;
  align-items: center;
  color: #e30613;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.alusel-products-hero h1 {
  font-size: clamp(25px, 2.3vw, 35px);
  line-height: 1.08;
  font-weight: 900;
  color: #0b2c55;
  margin-bottom: 14px;
}

.alusel-products-hero p {
  font-size: 15px;
  line-height: 1.8;
  color: #4b5563;
  max-width: 900px;
}

/* SECTION */
.alusel-products-section {
  padding: 26px 0 78px;
}

/* GRID */
.alusel-products-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

/* CARD */
.alusel-product-card {
  position: relative;
  min-height: 220px;
  background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid #e5e7eb;
  border-radius: 24px;
  padding: 26px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.alusel-product-card::after {
  content: "";
  position: absolute;
  width: 112px;
  height: 112px;
  right: -40px;
  top: -40px;
  border-radius: 999px;
  background-color: #ffe0e6;
  z-index: 1;
}

.alusel-product-number,
.alusel-product-content {
  position: relative;
  z-index: 2;
}

.alusel-product-number {
  width: 48px;
  height: 48px;
  border-radius: 15px;
  background-color: #0b2c55;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 900;
  margin-bottom: 22px;
}

.alusel-product-content h3 {
  font-size: 22px;
  line-height: 1.28;
  font-weight: 850;
  color: #0b2c55;
  margin-bottom: 12px;
}

.alusel-product-content p {
  font-size: 15px;
  line-height: 1.7;
  color: #4b5563;
  margin: 0;
}

/* NOTE */
.alusel-products-note {
  margin-top: 26px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-left: 6px solid #e30613;
  border-radius: 22px;
  padding: 24px 26px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.05);
}

.alusel-products-note h2 {
  font-size: 24px;
  line-height: 1.25;
  font-weight: 900;
  color: #0b2c55;
  margin-bottom: 10px;
}

.alusel-products-note p {
  font-size: 15px;
  line-height: 1.8;
  color: #4b5563;
  margin: 0;
}
/* =========================
   COMMERCIAL SHUTTER PAGE
========================= */
.commercial-shutter-page {
  background-color: #f3f5f7;
  color: #1f2937;
  overflow-x: hidden;
}

.commercial-shutter-page .container {
  width: 92%;
  max-width: 1280px;
  margin: 0 auto;
}

/* HERO */
.commercial-shutter-hero {
  padding: 20px 0 20px;
  background:
    radial-gradient(circle at top right, #f6dbe1 0%, transparent 30%),
    linear-gradient(180deg, #f3f5f7 0%, #eef2f5 100%);
  border-top: 1px solid #e5e7eb;
}

.commercial-shutter-hero-content {
  max-width: 820px;
}

.commercial-shutter-eyebrow {
  display: inline-flex;
  align-items: center;
  color: #e30613;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.commercial-shutter-hero h1 {
  font-size: clamp(25px, 2.3vw, 35px);
  line-height: 1.08;
  font-weight: 900;
  color: #0b2c55;
  margin-bottom: 14px;
}

.commercial-shutter-hero p {
  font-size: 15px;
  line-height: 1.8;
  color: #4b5563;
  max-width: 900px;
}

/* CONTENT */
.commercial-shutter-content-section {
  padding: 26px 0 78px;
}

.commercial-shutter-section-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* CARD */
.commercial-shutter-card {
  background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
  border: 1px solid #e5e7eb;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.05);
}

.commercial-shutter-feature-card {
  border-left: 6px solid #e30613;
}

.commercial-shutter-heading {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.commercial-shutter-number {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 15px;
  background-color: #0b2c55;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 900;
}

.commercial-shutter-heading h2 {
  font-size: 26px;
  line-height: 1.2;
  font-weight: 900;
  color: #0b2c55;
  margin: 0 0 4px;
}

.commercial-shutter-heading p {
  font-size: 14.5px;
  line-height: 1.5;
  color: #64748b;
  margin: 0;
}

/* TEXT */
.commercial-shutter-text-content {
  max-width: 980px;
}

.commercial-shutter-text-content p {
  font-size: 15px;
  line-height: 1.85;
  color: #4b5563;
  margin: 0;
}

.commercial-shutter-text-content p + p {
  margin-top: 14px;
}

/* BENEFIT GRID */
.commercial-shutter-benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.commercial-shutter-benefit-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  padding: 18px;
}

.commercial-shutter-benefit-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background-color: #0b2c55;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 14px;
}

.commercial-shutter-benefit-card h3 {
  font-size: 18px;
  line-height: 1.3;
  color: #0b2c55;
  margin-bottom: 8px;
}

.commercial-shutter-benefit-card p {
  font-size: 14.5px;
  line-height: 1.7;
  color: #4b5563;
  margin: 0;
}

/* FEATURE LIST */
.commercial-shutter-feature-list {
  margin: 0;
  padding-left: 20px;
}

.commercial-shutter-feature-list li {
  color: #4b5563;
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 8px;
}

.commercial-shutter-feature-list li:last-child {
  margin-bottom: 0;
}
/* =========================
   SET PRODUCTS PAGE
========================= */
.set-products-page {
  background-color: #f3f5f7;
  color: #1f2937;
  overflow-x: hidden;
}

.set-products-page .container {
  width: 92%;
  max-width: 1280px;
  margin: 0 auto;
}

/* HERO */
.set-products-hero {
  padding: 25px 0 24px;
  background:
    radial-gradient(circle at top right, #f6dbe1 0%, transparent 30%),
    linear-gradient(180deg, #f3f5f7 0%, #eef2f5 100%);
  border-top: 1px solid #e5e7eb;
}

.set-products-hero-content {
  max-width: 820px;
}

.set-products-eyebrow {
  display: inline-flex;
  align-items: center;
  color: #e30613;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.set-products-hero h1 {
  font-size: clamp(15px, 2vw, 30px);
  line-height: 1.08;
  font-weight: 800;
  color: #0b2c55;
  margin: 0;
}

/* SECTION */
.set-products-section {
  padding: 26px 0 78px;
}

.set-products-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

/* CARD */
.set-product-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 22px;
  padding: 22px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.05);
}

.set-product-card h2 {
  font-size: 18px;
  line-height: 1.35;
  font-weight: 850;
  color: #0b2c55;
  margin: 0 0 16px;
}

.set-product-image {
  width: 100%;
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.set-product-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}
/* =========================
   GALVANIZED SHUTTER PAGE
========================= */
.galvanized-shutter-page {
  background-color: #f3f5f7;
  color: #1f2937;
  overflow-x: hidden;
}

.galvanized-shutter-page .container {
  width: 92%;
  max-width: 1280px;
  margin: 0 auto;
}

/* HERO */
.galvanized-shutter-hero {
  padding: 25px 0 24px;
  background:
    radial-gradient(circle at top right, #f6dbe1 0%, transparent 30%),
    linear-gradient(180deg, #f3f5f7 0%, #eef2f5 100%);
  border-top: 1px solid #e5e7eb;
}

.galvanized-shutter-hero-content {
  max-width: 820px;
}

.galvanized-shutter-eyebrow {
  display: inline-flex;
  align-items: center;
  color: #e30613;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.galvanized-shutter-hero h1 {
  font-size: clamp(25px, 2.5vw, 38px);
  line-height: 1.08;
  font-weight: 900;
  color: #0b2c55;
  margin: 0;
}

/* SECTION */
.galvanized-shutter-section {
  padding: 26px 0 78px;
}

.galvanized-shutter-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 22px;
  padding: 28px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.05);
}

.galvanized-shutter-text {
  max-width: 1000px;
  margin-bottom: 24px;
}

.galvanized-shutter-text p {
  font-size: 15px;
  line-height: 1.85;
  color: #4b5563;
  margin: 0;
}

.galvanized-shutter-text p + p {
  margin-top: 14px;
}

.galvanized-shutter-image {
  width: 100%;
  max-width: 620px;
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.galvanized-shutter-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}
/* =========================
   MOSEL PRODUCTS PAGE
========================= */
.mosel-products-page {
  background-color: #f3f5f7;
  color: #1f2937;
  overflow-x: hidden;
}

.mosel-products-page .container {
  width: 92%;
  max-width: 1280px;
  margin: 0 auto;
}

/* HERO */
.mosel-products-hero {
  padding: 25px 0 24px;
  background:
    radial-gradient(circle at top right, #f6dbe1 0%, transparent 30%),
    linear-gradient(180deg, #f3f5f7 0%, #eef2f5 100%);
  border-top: 1px solid #e5e7eb;
}

.mosel-products-hero-content {
  max-width: 820px;
}

.mosel-products-eyebrow {
  display: inline-flex;
  align-items: center;
  color: #e30613;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.mosel-products-hero h1 {
  font-size: clamp(25px, 2.5vw, 38px);
  line-height: 1.08;
  font-weight: 900;
  color: #0b2c55;
  margin: 0;
}

/* SECTION */
.mosel-products-section {
  padding: 26px 0 78px;
}

.mosel-products-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

/* CARD */
.mosel-product-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 22px;
  padding: 22px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.05);
}

.mosel-product-card h2 {
  font-size: 18px;
  line-height: 1.35;
  font-weight: 850;
  color: #0b2c55;
  margin: 0 0 16px;
}

.mosel-product-image {
  width: 100%;
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mosel-product-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.mosel-product-card-title-only {
  min-height: 110px;
  display: flex;
  align-items: center;
}

.mosel-product-card-title-only h2 {
  margin: 0;
}
/* =========================
   MOSEL CONTROL PAGE - 2 COLUMN VERSION
========================= */
.mosel-control-page {
  background-color: #f3f5f7;
  color: #1f2937;
  overflow-x: hidden;
}

.mosel-control-page .container {
  width: 92%;
  max-width: 1280px;
  margin: 0 auto;
}

/* HERO */
.mosel-control-hero {
  padding: 18px 0 16px;
  background:
    radial-gradient(circle at top right, #f6dbe1 0%, transparent 30%),
    linear-gradient(180deg, #f3f5f7 0%, #eef2f5 100%);
  border-top: 1px solid #e5e7eb;
}

.mosel-control-hero-content {
  max-width: 900px;
}

.mosel-control-eyebrow {
  display: inline-flex;
  align-items: center;
  color: #e30613;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.mosel-control-hero h1 {
  font-size: clamp(24px, 2.2vw, 34px);
  line-height: 1.12;
  font-weight: 900;
  color: #0b2c55;
  margin: 0;
}

/* SECTION */
.mosel-control-section {
  padding: 24px 0 56px;
}

/* 2 COLUMN GRID */
.mosel-control-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  align-items: start;
}

/* CARD */
.mosel-control-card {
  width: 100%;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  padding: 14px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}

.mosel-control-image {
  width: 100%;
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mosel-control-image img {
  width: 100%;
  max-height: 430px;
  height: auto;
  display: block;
  object-fit: contain;
}
/* =========================
   GLASS CATEGORY PAGE
========================= */
.glass-category-page {
  background-color: #f3f5f7;
  color: #1f2937;
  overflow-x: hidden;
}

.glass-category-page .container {
  width: 92%;
  max-width: 1280px;
  margin: 0 auto;
}

/* HERO */
.glass-category-hero {
  padding: 25px 0 24px;
  background:
    radial-gradient(circle at top right, #f6dbe1 0%, transparent 30%),
    linear-gradient(180deg, #f3f5f7 0%, #eef2f5 100%);
  border-top: 1px solid #e5e7eb;
}

.glass-category-hero-content {
  max-width: 820px;
}

.glass-category-eyebrow {
  display: inline-flex;
  align-items: center;
  color: #e30613;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.glass-category-hero h1 {
  font-size: clamp(30px, 3vw, 48px);
  line-height: 1.08;
  font-weight: 900;
  color: #0b2c55;
  margin-bottom: 14px;
}

.glass-category-hero p {
  font-size: 15px;
  line-height: 1.8;
  color: #4b5563;
  max-width: 900px;
}

/* SECTION */
.glass-category-section {
  padding: 28px 0 78px;
}

.glass-category-list {
  max-width: 980px;
  background: #ffffff;
  border: 1px solid #dbe3ea;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.05);
}

/* ITEMS */
.glass-category-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 54px;
  padding: 0 22px;
  text-decoration: none;
  color: #00a7b5;
  font-size: 16px;
  font-weight: 800;
  border-bottom: 1px solid #dbe3ea;
  transition: background-color 0.22s ease, color 0.22s ease, padding-left 0.22s ease;
}

.glass-category-item:nth-child(odd) {
  background-color: #e9eef2;
}

.glass-category-item:nth-child(even) {
  background-color: #ffffff;
}

.glass-category-item:last-child {
  border-bottom: none;
}

.glass-category-item::after {
  content: "›";
  font-size: 26px;
  line-height: 1;
  color: #e30613;
  font-weight: 900;
}
/* =========================
   GLASS DETAIL PAGE
========================= */
.glass-detail-page {
  background-color: #f3f5f7;
  color: #1f2937;
  overflow-x: hidden;
}

.glass-detail-page .container {
  width: 92%;
  max-width: 1280px;
  margin: 0 auto;
}

/* HERO */
.glass-detail-hero {
  padding: 25px 0 24px;
  background:
    radial-gradient(circle at top right, #f6dbe1 0%, transparent 30%),
    linear-gradient(180deg, #f3f5f7 0%, #eef2f5 100%);
  border-top: 1px solid #e5e7eb;
}

.glass-detail-hero-content {
  max-width: 820px;
}

.glass-detail-eyebrow {
  display: inline-flex;
  align-items: center;
  color: #e30613;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.glass-detail-hero h1 {
  font-size: clamp(25px, 2.7vw, 40px);
  line-height: 1.08;
  font-weight: 900;
  color: #0b2c55;
  margin: 0;
}

/* SECTION */
.glass-detail-section {
  padding: 28px 0 78px;
}

.glass-detail-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* CARD */
.glass-detail-card {
  background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
  border: 1px solid #e5e7eb;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 8px 25px rgba(15, 23, 42, 0.05);
}

.glass-detail-feature-card {
  border-left: 6px solid #e30613;
}

.glass-detail-heading {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.glass-detail-number {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 10px;
  background-color: #0b2c55;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 900;
}

.glass-detail-heading h2 {
  font-size: 20px;
  line-height: 1.2;
  font-weight: 900;
  color: #0b2c55;
  margin: 0;
}

.glass-detail-card p {
  font-size: 15px;
  line-height: 1.85;
  color: #4b5563;
  margin: 0;
}

.glass-detail-card p + p {
  margin-top: 14px;
}

.glass-detail-list-items {
  margin: 18px 0;
  padding-left: 22px;
}

.glass-detail-list-items li {
  font-size: 15px;
  line-height: 1.8;
  color: #4b5563;
  margin-bottom: 6px;
}
/* =========================
   GLASS PROCESSING IMAGES
========================= */
.glass-process-content {
  display: flex;
  align-items: center;
  gap: 20px;
}

.glass-process-image-row {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.glass-process-image {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 10px;
  width: fit-content;
  max-width: 100%;
  margin-top: 16px;
}

.glass-process-content .glass-process-image {
  margin-top: 0;
  flex-shrink: 0;
}

.glass-process-image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.glass-process-image-small {
  max-width: 160px;
}

.glass-process-image-medium {
  max-width: 200px;
}

.glass-process-image-large {
  max-width: 200px;
}
/* =========================
   DECORATIVE GLASS IMAGES
========================= */
.decorative-image-row {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.decorative-image-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
  max-width: 720px;
}

.decorative-image {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 8px;
  width: fit-content;
  max-width: 100%;
}

.decorative-image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.decorative-image-small {
  max-width: 140px;
}

.decorative-table-wrap {
  margin: 18px 0;
  overflow-x: auto;
}

.decorative-table {
  width: 100%;
  max-width: 720px;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 12px;
}

.decorative-table td {
  padding: 14px 16px;
  border: 1px solid #e5e7eb;
  font-size: 14.5px;
  color: #4b5563;
}

.decorative-table tr:nth-child(odd) td {
  background-color: #13c3e6;
  color: #ffffff;
  font-weight: 800;
}

.decorative-table tr:nth-child(even) td {
  background-color: #f1f5f9;
}

@media (max-width: 900px) {
  .decorative-image-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 560px;
  }
}

@media (max-width: 600px) {
  .decorative-image-row {
    gap: 14px;
  }

  .decorative-image-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    max-width: 100%;
  }

  .decorative-image-small {
    max-width: 120px;
  }

  .decorative-table td {
    padding: 12px;
    font-size: 14px;
  }
}
/* =========================
   U VALUES TABLE - UPDATED
========================= */
.u-values-table-wrap {
  width: 100%;
  overflow: hidden;
  border-radius: 16px;
}

.u-values-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  background-color: #ffffff;
}

.u-values-table th,
.u-values-table td {
  border: 1px solid #dbe3ea;
  padding: 14px 12px;
  text-align: left;
  vertical-align: top;
  font-size: 14px;
  line-height: 1.6;
  color: #334155;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.u-values-table th {
  background-color: #eef2f7;
  color: #0b2c55;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.u-values-table tbody tr:nth-child(even) {
  background-color: #f8fafc;
}

.u-values-table .u-code {
  width: 14%;
}

.u-values-table .u-type {
  width: 58%;
}

.u-values-table .u-value,
.u-values-table .u-decibel {
  width: 14%;
  font-weight: 800;
  color: #0b2c55;
}
/* =========================
   FACADE GLASS IMAGES
========================= */
.facade-image-row {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  flex-wrap: wrap;
  margin: 18px 0;
}

.facade-image {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 10px;
  width: fit-content;
  max-width: 100%;
  margin: 18px 0;
}

.facade-image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.facade-image-medium {
  max-width: 260px;
}

.facade-image-large {
  max-width: 300px;
}
/* =========================
   ISICAM REFLEKTE PAGE
========================= */

.reflective-image-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 20px 0 10px;
}

.reflective-image-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 10px;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.04);
}

.reflective-image-card img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
}

.reflective-image-small {
  width: 100%;
  max-width: 180px;
}

.reflective-code-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 10px;
}

.reflective-code-box {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 18px 18px 14px;
}

.reflective-code-box h3 {
  font-size: 17px;
  line-height: 1.3;
  font-weight: 800;
  color: #0b2c55;
  margin: 0 0 12px;
}

.reflective-code-list {
  margin: 0;
  padding-left: 20px;
}

.reflective-code-list li {
  margin-bottom: 6px;
}

.reflective-special-layout {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: wrap;
}

.reflective-special-text {
  flex: 1 1 320px;
  min-width: 260px;
}
/* =========================
   FLOAT GLASS PAGE
========================= */
.float-glass-image-row {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.float-glass-image {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 10px;
  width: fit-content;
  max-width: 100%;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.04);
}

.float-glass-image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 10px;
}

.float-glass-image-wide {
  max-width: 180px;
}

.float-glass-image-medium {
  max-width: 250px;
}

/* RENK KARTLARI */
.float-color-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(130px, 1fr));
  gap: 18px;
  margin-top: 22px;
  max-width: 760px;
}

.float-color-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  padding: 18px 14px;
  min-height: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.04);
}

.float-color-swatch {
  width: 55px;
  height: 55px;
  border-radius: 16px;
  margin-bottom: 14px;
  border: 1px solid rgba(15, 23, 42, 0.08);

}

.float-color-card h3 {
  margin: 0;
  font-size: 16px;
  line-height: 1.25;
  font-weight: 900;
  color: #0b2c55;
}

/* Renkler */
.float-color-smoke {
  background: linear-gradient(135deg, #4b5563 0%, #9ca3af 100%);
}

.float-color_bronze {
  background: linear-gradient(135deg, #8a4f2a 0%, #c08a63 100%);
}

.float-color_green {
  background: linear-gradient(135deg, #8fbfa3 0%, #c6e2d2 100%);
}

.float-color_blue {
  background: linear-gradient(135deg, #0284c7 0%, #67e8f9 100%);
}
/* =========================
   ISICAM DETAIL TABLES 
========================= */
.isicam-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 16px auto 0;
  max-width: 820px;
}

.isicam-info-box {
  background-color: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 14px 16px;
}

.isicam-info-box h3 {
  font-size: 14px;
  font-weight: 900;
  color: #0b2c55;
  margin: 0 0 8px;
}

.isicam-info-box p {
  margin: 6px 0 0;
  font-size: 13px;
  line-height: 1.55;
  color: #4b5563;
}

.isicam-note {
  max-width: 820px;
  margin: 12px auto 0 !important;
  font-size: 13px !important;
  line-height: 1.6 !important;
  color: #64748b !important;
}

/* Tablo dış alanı */
.responsive-table-wrap {
  width: 100%;
  max-width: 860px;
  margin: 16px auto 0;
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid #dbe3ea;
  background-color: #ffffff;
  margin-left: -3px;
}

/* Ana tablo */
.responsive-info-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  background-color: #ffffff;
}

/* Tablo hücreleri */
.responsive-info-table th,
.responsive-info-table td {
  border: 1px solid #dbe3ea;
  padding: 9px 10px;
  text-align: left;
  vertical-align: top;
  font-size: 12.8px;
  line-height: 1.45;
  color: #334155;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* Tablo başlıkları */
.responsive-info-table th {
  background-color: #0b2c55;
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.25px;
}

/* Satır rengi */
.responsive-info-table tbody tr:nth-child(even) {
  background-color: #f8fafc;
}

/* Güvenlik tablolarındaki özel başlık satırları */
.table-section-title td {
  background-color: #0b2c55;
  color: #ffffff;
  font-size: 12.5px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.25px;
}

.table-sub-title td {
  background-color: #f59e0b;
  color: #111827;
  font-size: 12.5px;
  font-weight: 900;
}

.safety-table {
  table-layout: fixed;
}
/* =========================
   CONTACT PAGE
========================= */
.contact-page {
  background-color: #f3f5f7;
  color: #1f2937;
  overflow-x: hidden;
}

.contact-hero {
  padding: 30px 0 24px;
  background:
    radial-gradient(circle at top right, #f6dbe1 0%, transparent 32%),
    linear-gradient(180deg, #f3f5f7 0%, #eef2f5 100%);
  border-top: 1px solid #e5e7eb;
}

.contact-eyebrow {
  display: inline-flex;
  color: #e30613;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.contact-hero h1 {
  font-size: clamp(25px, 2.75vw, 45px);
  line-height: 1.08;
  font-weight: 900;
  color: #0b2c55;
  margin: 0 0 12px;
}

.contact-hero p {
  max-width: 720px;
  font-size: 15px;
  line-height: 1.7;
  color: #35506f;
  margin: 0;
}

.contact-section {
  padding: 35px 0 80px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  gap: 28px;
  align-items: stretch;
}

/* MAP */
.contact-map-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 24px;
  padding: 14px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
}

.contact-map {
  width: 100%;
  min-height: 390px;
  border-radius: 18px;
  overflow: hidden;
  background-color: #ffffff;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 390px;
  border: 0;
  display: block;
}

.contact-map-open-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 14px;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  background-color: #e30613;
  color: #ffffff;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  transition: 0.25s ease;
}

.contact-map-open-btn::before {
  content: "›";
  font-size: 24px;
  line-height: 1;
  margin-right: 8px;
}

.contact-map-open-btn:hover {
  background-color: #0b2c55;
}

/* INFO CARD */
.contact-info-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 24px;
  padding: 30px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
}

.contact-info-card h2 {
  font-size: 26px;
  font-weight: 900;
  color: #0b2c55;
  margin: 0 0 22px;
}

.contact-info-item {
  padding: 18px 0;
  border-bottom: 1px solid #e5e7eb;
}

.contact-info-item:last-child {
  border-bottom: none;
}

.contact-info-item strong {
  display: block;
  font-size: 14px;
  font-weight: 900;
  color: #0b2c55;
  margin-bottom: 8px;
}

.contact-info-item p {
  font-size: 15px;
  line-height: 1.7;
  color: #4b5563;
  margin: 0;
}

.contact-info-item a {
  color: #0b2c55;
  font-weight: 800;
  text-decoration: none;
}

.contact-info-item a:hover {
  color: #e30613;
}


/* TABLET */
@media (max-width: 900px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-map,
  .contact-map iframe {
    min-height: 350px;
  }
}

/* MOBILE */
@media (max-width: 600px) {
  .contact-hero {
    padding: 28px 0 20px;
  }

  .contact-hero h1 {
    font-size: 30px;
  }

  .contact-hero p {
    font-size: 14.5px;
  }

  .contact-section {
    padding: 26px 0 56px;
  }

  .contact-layout {
    gap: 18px;
  }

  .contact-map-card {
    padding: 10px;
    border-radius: 18px;
  }

  .contact-map,
  .contact-map iframe {
    min-height: 290px;
    border-radius: 14px;
  }

  .contact-map-open-btn {
    width: 100%;
    min-height: 44px;
    font-size: 13.5px;
  }

  .contact-info-card {
    padding: 22px 18px;
    border-radius: 18px;
  }

  .contact-info-card h2 {
    font-size: 22px;
    margin-bottom: 16px;
  }

  .contact-info-item {
    padding: 15px 0;
  }

  .contact-info-item p {
    font-size: 14px;
  }
}

/* MOBILE */
@media (max-width: 600px) {
  .isicam-info-grid {
    gap: 12px;
    max-width: 100%;
  }

  .isicam-info-box {
    padding: 13px 12px;
    border-radius: 13px;
  }

  .isicam-info-box h3 {
    font-size: 13.5px;
  }

  .isicam-info-box p {
    font-size: 12.5px;
    line-height: 1.5;
  }

  .responsive-table-wrap {
    max-width: 100%;
    margin-top: 14px;
    overflow: visible;
    border: none;
    border-radius: 0;
    background: transparent;
  }

  .responsive-info-table,
  .responsive-info-table thead,
  .responsive-info-table tbody,
  .responsive-info-table th,
  .responsive-info-table td,
  .responsive-info-table tr {
    display: block;
    width: 100%;
  }

  .responsive-info-table {
    background: transparent;
  }

  .responsive-info-table thead {
    display: none;
  }

  .responsive-info-table tbody {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .responsive-info-table tbody tr {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 10px 11px;
    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.04);
  }

  .responsive-info-table tbody tr:nth-child(even) {
    background: #ffffff;
  }

  .responsive-info-table td {
    border: none;
    padding: 0;
    font-size: 12.5px;
    line-height: 1.5;
    color: #334155;
  }

  .responsive-info-table td + td {
    margin-top: 8px;
  }

  .responsive-info-table td::before {
    content: attr(data-label-tr);
    display: block;
    font-size: 10.5px;
    font-weight: 900;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.35px;
    margin-bottom: 3px;
  }

  html[lang="en"] .responsive-info-table td::before {
    content: attr(data-label-en);
  }

  .table-section-title,
  .table-sub-title {
    padding: 0 !important;
    box-shadow: none !important;
    border: none !important;
    background: transparent !important;
  }

  .table-section-title td,
  .table-sub-title td {
    border-radius: 12px;
    padding: 10px 12px;
    font-size: 12px;
  }

  .table-section-title td::before,
  .table-sub-title td::before {
    display: none;
  }

  .isicam-note {
    max-width: 100%;
    font-size: 12.5px !important;
  }
}

/* EXTRA SMALL MOBILE */
@media (max-width: 420px) {
  .responsive-info-table tbody tr {
    padding: 9px 10px;
    border-radius: 13px;
  }

  .responsive-info-table td {
    font-size: 12px;
    line-height: 1.45;
  }

  .responsive-info-table td::before {
    font-size: 10px;
  }
}
/* Hover */
@media (hover: hover) and (pointer: fine) {
  .float-color-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.08);
    border-color: #f3b8c0;
  }
}

/* TABLET */
@media (max-width: 900px) {
  .float-glass-image-wide {
    max-width: 320px;
  }

  .float-glass-image-medium {
    max-width: 230px;
  }

  .float-color-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 520px;
  }
}

/* MOBILE */
@media (max-width: 600px) {
  .float-glass-image-row {
    gap: 14px;
    margin-top: 16px;
  }

  .float-glass-image {
    padding: 8px;
    border-radius: 14px;
  }

  .float-glass-image-wide,
  .float-glass-image-medium {
    max-width: 100%;
    width: 100%;
  }

  .float-color-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    max-width: 100%;
    margin-top: 18px;
  }

  .float-color-card {
    min-height: 130px;
    padding: 14px 10px;
    border-radius: 16px;
  }

  .float-color-swatch {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    margin-bottom: 12px;
  }

  .float-color-card h3 {
    font-size: 14.5px;
  }
}

/* TABLET */
@media (max-width: 900px) {
  .reflective-code-grid {
    grid-template-columns: 1fr;
  }

  .reflective-image-small {
    max-width: 160px;
  }

  .reflective-code-box h3 {
    font-size: 16px;
  }
}

/* MOBILE */
@media (max-width: 600px) {
  .reflective-image-row {
    gap: 14px;
    margin: 16px 0 8px;
  }

  .reflective-image-card {
    border-radius: 14px;
    padding: 8px;
  }

  .reflective-image-small {
    max-width: 100%;
    width: 100%;
  }

  .reflective-special-layout {
    gap: 14px;
  }

  .reflective-code-box {
    padding: 16px 14px 12px;
    border-radius: 14px;
  }

  .reflective-code-box h3 {
    font-size: 15px;
    margin-bottom: 10px;
  }
}

/* TABLET */
@media (max-width: 900px) {
  .facade-image-medium {
    max-width: 230px;
  }

  .facade-image-large {
    max-width: 420px;
  }
}

/* MOBILE */
@media (max-width: 600px) {
  .facade-image-row {
    gap: 14px;
    margin: 14px 0;
  }

  .facade-image {
    padding: 8px;
    border-radius: 12px;
    margin: 14px 0;
  }

  .facade-image-medium {
    max-width: 100%;
  }

  .facade-image-large {
    max-width: 100%;
  }
}

/* TABLET */
@media (max-width: 900px) {
  .u-values-table th,
  .u-values-table td {
    padding: 12px 10px;
    font-size: 13px;
    line-height: 1.5;
  }
}

/* MOBILE */
@media (max-width: 600px) {
  .u-values-table-wrap {
    overflow: visible;
    border-radius: 0;
  }

  .u-values-table,
  .u-values-table thead,
  .u-values-table tbody,
  .u-values-table th,
  .u-values-table td,
  .u-values-table tr {
    display: block;
    width: 100%;
  }

  .u-values-table {
    background: transparent;
  }

  .u-values-table thead {
    display: none;
  }

  .u-values-table tbody {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .u-values-table tbody tr {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    padding: 14px;
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.05);
  }

  .u-values-table tbody tr:nth-child(even) {
    background: #ffffff;
  }

  .u-values-table td {
    border: none;
    padding: 0;
    width: 100% !important;
  }

  .u-values-table td + td {
    margin-top: 10px;
  }

  .u-values-table td::before {
    content: attr(data-label);
    display: block;
    font-size: 11px;
    font-weight: 800;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    margin-bottom: 4px;
  }

  .u-values-table .u-code {
    background-color: #f1f5f9;
    color: #0b2c55;
    border-radius: 10px;
    padding: 8px 10px;
    font-weight: 800;
  }

  .u-values-table .u-type {
    color: #334155;
    font-size: 13.5px;
    line-height: 1.65;
    font-weight: 600;
  }

  .u-values-table .u-value,
  .u-values-table .u-decibel {
    color: #0b2c55;
    font-size: 13px;
    font-weight: 900;
    background-color: #f8fafc;
    border-radius: 10px;
    padding: 8px 10px;
  }
}

/* MOBILE */
@media (max-width: 600px) {
  .glass-process-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .glass-process-image-row {
    gap: 14px;
  }

  .glass-process-image-small {
    max-width: 145px;
  }

  .glass-process-image-medium {
    max-width: 240px;
  }

  .glass-process-image-large {
    max-width: 100%;
  }
}

/* Hover - transparan efekt yok */
@media (hover: hover) and (pointer: fine) {
  .glass-detail-card:hover {
    box-shadow: 0 18px 38px rgba(15, 23, 42, 0.09);
    border-color: #f3b8c0;
  }
}

/* TABLET */
@media (max-width: 900px) {
  .glass-detail-card {
    padding: 24px 20px;
  }

  .glass-detail-heading h2 {
    font-size: 24px;
  }

  .glass-detail-card p,
  .glass-detail-list-items li {
    font-size: 14.5px;
    line-height: 1.75;
  }
}

/* MOBILE */
@media (max-width: 600px) {
  .glass-detail-hero {
    padding: 28px 0 18px;
  }

  .glass-detail-eyebrow {
    font-size: 11px;
    margin-bottom: 6px;
  }

  .glass-detail-hero h1 {
    font-size: 30px;
  }

  .glass-detail-section {
    padding: 22px 0 54px;
  }

  .glass-detail-list {
    gap: 18px;
  }

  .glass-detail-card {
    padding: 20px 16px;
    border-radius: 18px;
  }

  .glass-detail-feature-card {
    border-left-width: 5px;
  }

  .glass-detail-heading {
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
  }

  .glass-detail-number {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 13px;
    font-size: 13px;
  }

  .glass-detail-heading h2 {
    font-size: 22px;
  }

  .glass-detail-card p,
  .glass-detail-list-items li {
    font-size: 14px;
    line-height: 1.7;
  }

  .glass-detail-list-items {
    padding-left: 20px;
  }
}

@media (hover: hover) and (pointer: fine) {
  .glass-category-item:hover {
    background-color: #0b2c55;
    color: #ffffff;
    padding-left: 28px;
  }

  .glass-category-item:hover::after {
    color: #ffffff;
  }
}

/* MOBILE */
@media (max-width: 600px) {
  .glass-category-hero {
    padding: 28px 0 18px;
  }

  .glass-category-eyebrow {
    font-size: 11px;
    margin-bottom: 6px;
  }

  .glass-category-hero h1 {
    font-size: 30px;
    margin-bottom: 10px;
  }

  .glass-category-hero p {
    font-size: 14.5px;
  }

  .glass-category-section {
    padding: 22px 0 54px;
  }

  .glass-category-list {
    border-radius: 16px;
  }

  .glass-category-item {
    min-height: 50px;
    padding: 0 16px;
    font-size: 14.5px;
  }

  .glass-category-item::after {
    font-size: 23px;
  }
}

/* TABLET */
@media (max-width: 900px) {
  .mosel-control-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .mosel-control-card {
    padding: 12px;
  }

  .mosel-control-image img {
    max-height: 360px;
  }
}

/* MOBILE */
@media (max-width: 600px) {
  .mosel-control-hero {
    padding: 22px 0 14px;
  }

  .mosel-control-eyebrow {
    font-size: 10px;
    margin-bottom: 5px;
  }

  .mosel-control-hero h1 {
    font-size: 24px;
  }

  .mosel-control-section {
    padding: 18px 0 46px;
  }

  .mosel-control-list {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .mosel-control-card {
    padding: 12px;
    border-radius: 16px;
  }

  .mosel-control-image {
    border-radius: 12px;
  }

  .mosel-control-image img {
    max-height: 300px;
  }
}
/* TABLET */
@media (max-width: 900px) {
  .mosel-products-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .mosel-product-card {
    padding: 20px;
  }

  .mosel-product-card h2 {
    font-size: 17px;
  }
}

/* MOBILE */
@media (max-width: 600px) {
  .mosel-products-hero {
    padding: 28px 0 18px;
  }

  .mosel-products-eyebrow {
    font-size: 11px;
    margin-bottom: 6px;
  }

  .mosel-products-hero h1 {
    font-size: 30px;
  }

  .mosel-products-section {
    padding: 22px 0 54px;
  }

  .mosel-products-list {
    gap: 16px;
  }

  .mosel-product-card {
    padding: 16px;
    border-radius: 18px;
  }

  .mosel-product-card h2 {
    font-size: 16px;
    margin-bottom: 12px;
  }

  .mosel-product-image {
    border-radius: 14px;
  }

  .mosel-product-card-title-only {
    min-height: 82px;
  }

  .mosel-product-card-title-only h2 {
    margin: 0;
  }
}

/* TABLET */
@media (max-width: 900px) {
  .galvanized-shutter-card {
    padding: 24px 20px;
  }

  .galvanized-shutter-text p {
    font-size: 14.5px;
    line-height: 1.75;
  }

  .galvanized-shutter-image {
    max-width: 560px;
  }
}

/* MOBILE */
@media (max-width: 600px) {
  .galvanized-shutter-hero {
    padding: 28px 0 18px;
  }

  .galvanized-shutter-eyebrow {
    font-size: 11px;
    margin-bottom: 6px;
  }

  .galvanized-shutter-hero h1 {
    font-size: 30px;
  }

  .galvanized-shutter-section {
    padding: 22px 0 54px;
  }

  .galvanized-shutter-card {
    padding: 18px 16px;
    border-radius: 18px;
  }

  .galvanized-shutter-text {
    margin-bottom: 18px;
  }

  .galvanized-shutter-text p {
    font-size: 14px;
    line-height: 1.7;
  }

  .galvanized-shutter-image {
    border-radius: 14px;
  }
}
/* TABLET */
@media (max-width: 900px) {
  .set-products-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .set-product-card {
    padding: 20px;
  }

  .set-product-card h2 {
    font-size: 17px;
  }
}

/* MOBILE */
@media (max-width: 600px) {
  .set-products-hero {
    padding: 28px 0 18px;
  }

  .set-products-eyebrow {
    font-size: 11px;
    margin-bottom: 6px;
  }

  .set-products-hero h1 {
    font-size: 30px;
  }

  .set-products-section {
    padding: 22px 0 54px;
  }

  .set-products-list {
    gap: 16px;
  }

  .set-product-card {
    padding: 16px;
    border-radius: 18px;
  }

  .set-product-card h2 {
    font-size: 16px;
    margin-bottom: 12px;
  }

  .set-product-image {
    border-radius: 14px;
  }
}

/* HOVER - transparent overlay yok */
@media (hover: hover) and (pointer: fine) {
  .commercial-shutter-card:hover,
  .commercial-shutter-benefit-card:hover {
    box-shadow: 0 18px 38px rgba(15, 23, 42, 0.09);
    border-color: #f3b8c0;
  }
}

/* TABLET */
@media (max-width: 900px) {
  .commercial-shutter-card {
    padding: 24px 20px;
  }

  .commercial-shutter-heading h2 {
    font-size: 25px;
  }

  .commercial-shutter-benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .commercial-shutter-text-content p,
  .commercial-shutter-feature-list li {
    font-size: 14.5px;
    line-height: 1.75;
  }
}

/* MOBILE */
@media (max-width: 600px) {
  .commercial-shutter-hero {
    padding: 28px 0 18px;
  }

  .commercial-shutter-eyebrow {
    font-size: 11px;
    margin-bottom: 6px;
  }

  .commercial-shutter-hero h1 {
    font-size: 30px;
    margin-bottom: 10px;
  }

  .commercial-shutter-hero p {
    font-size: 14.5px;
  }

  .commercial-shutter-content-section {
    padding: 22px 0 54px;
  }

  .commercial-shutter-section-list {
    gap: 18px;
  }

  .commercial-shutter-card {
    padding: 20px 16px;
    border-radius: 18px;
  }

  .commercial-shutter-feature-card {
    border-left-width: 5px;
  }

  .commercial-shutter-heading {
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
  }

  .commercial-shutter-number {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 13px;
    font-size: 13px;
  }

  .commercial-shutter-heading h2 {
    font-size: 22px;
  }

  .commercial-shutter-heading p {
    font-size: 13.5px;
  }

  .commercial-shutter-text-content p,
  .commercial-shutter-feature-list li {
    font-size: 14px;
    line-height: 1.7;
  }

  .commercial-shutter-benefit-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .commercial-shutter-benefit-card {
    padding: 16px;
    border-radius: 16px;
  }

  .commercial-shutter-benefit-card h3 {
    font-size: 17px;
  }

  .commercial-shutter-benefit-card p {
    font-size: 14px;
  }
}

/* HOVER ONLY DESKTOP - no transparent overlay */
@media (hover: hover) and (pointer: fine) {
  .alusel-product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 38px rgba(15, 23, 42, 0.10);
    border-color: #f3b8c0;
  }
}

/* TABLET */
@media (max-width: 900px) {
  .alusel-products-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .alusel-product-card {
    min-height: auto;
    padding: 24px 22px;
  }

  .alusel-product-content h3 {
    font-size: 21px;
  }

  .alusel-products-note {
    padding: 22px 20px;
  }
}

/* MOBILE */
@media (max-width: 600px) {
  .alusel-products-hero {
    padding: 28px 0 18px;
  }

  .alusel-products-eyebrow {
    font-size: 11px;
    margin-bottom: 6px;
  }

  .alusel-products-hero h1 {
    font-size: 30px;
    margin-bottom: 10px;
  }

  .alusel-products-hero p {
    font-size: 14.5px;
  }

  .alusel-products-section {
    padding: 22px 0 54px;
  }

  .alusel-products-grid {
    gap: 16px;
  }

  .alusel-product-card {
    padding: 20px 16px;
    border-radius: 18px;
  }

  .alusel-product-card::after {
    width: 90px;
    height: 90px;
    right: -34px;
    top: -34px;
  }

  .alusel-product-number {
    width: 42px;
    height: 42px;
    border-radius: 13px;
    font-size: 13px;
    margin-bottom: 16px;
  }

  .alusel-product-content h3 {
    font-size: 19px;
    margin-bottom: 10px;
  }

  .alusel-product-content p {
    font-size: 14px;
    line-height: 1.7;
  }

  .alusel-products-note {
    margin-top: 20px;
    padding: 20px 16px;
    border-radius: 18px;
    border-left-width: 5px;
  }

  .alusel-products-note h2 {
    font-size: 21px;
  }

  .alusel-products-note p {
    font-size: 14px;
    line-height: 1.7;
  }
}
/* HOVER ONLY DESKTOP */
@media (hover: hover) and (pointer: fine) {
  .shutter-sub-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 44px rgba(15, 23, 42, 0.12);
    border-color: rgba(227, 6, 19, 0.25);
  }

  .shutter-sub-card:hover::before {
    opacity: 1;
  }

  .shutter-sub-card:hover .shutter-sub-number {
    background-color: #ff304f;
  }

  .shutter-sub-card:hover h3,
  .shutter-sub-card:hover p {
    color: #ffffff;
  }

  .shutter-sub-card:hover .shutter-sub-link {
    background-color: #ffffff;
    color: #0b2c55;
    transform: translateX(3px);
  }
}

/* TABLET */
@media (max-width: 1100px) {
  .shutter-sub-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .shutter-sub-section {
    padding: 24px 0 62px;
  }

  .shutter-sub-header h2 {
    font-size: 26px;
  }

  .shutter-sub-header p {
    font-size: 14.5px;
    line-height: 1.7;
  }

  .shutter-sub-card {
    min-height: 220px;
    padding: 22px;
    border-radius: 22px;
  }

  .shutter-sub-content h3 {
    font-size: 22px;
  }

  .shutter-sub-content p {
    font-size: 14.5px;
  }
}

/* MOBILE */
@media (max-width: 600px) {
  .shutter-sub-hero {
    padding: 28px 0 18px;
  }

  .shutter-sub-eyebrow {
    font-size: 11px;
    margin-bottom: 6px;
  }

  .shutter-sub-hero h1 {
    font-size: 30px;
    margin-bottom: 10px;
  }

  .shutter-sub-hero p {
    font-size: 14.5px;
  }

  .shutter-sub-section {
    padding: 22px 0 54px;
  }

  .shutter-sub-header {
    margin-bottom: 20px;
  }

  .shutter-sub-header h2 {
    font-size: 24px;
  }

  .shutter-sub-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .shutter-sub-card {
    min-height: auto;
    padding: 20px 16px;
    border-radius: 18px;
  }

  .shutter-sub-card::before {
    display: none;
  }

  .shutter-sub-card::after {
    width: 90px;
    height: 90px;
    right: -34px;
    top: -34px;
  }

  .shutter-sub-number {
    width: 42px;
    height: 42px;
    border-radius: 13px;
    font-size: 13px;
    margin-bottom: 16px;
  }

  .shutter-sub-content h3 {
    font-size: 21px;
    margin-bottom: 10px;
  }

  .shutter-sub-content p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 18px;
  }

  .shutter-sub-link {
    width: 100%;
    padding: 11px 14px;
    font-size: 12px;
  }
}
/* Hover sadece bilgisayarda */
@media (hover: hover) and (pointer: fine) {
  .shutter-category-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 44px rgba(15, 23, 42, 0.12);
    border-color: rgba(227, 6, 19, 0.25);
  }

  .shutter-category-card:hover::before {
    opacity: 1;
  }

  .shutter-category-card:hover .shutter-card-number {
    background-color: #ff304f;
  }

  .shutter-category-card:hover h3,
  .shutter-category-card:hover p {
    color: #ffffff;
  }

  .shutter-category-card:hover .shutter-card-link {
    background-color: #ffffff;
    color: #0b2c55;
    transform: translateX(3px);
  }
}

/* Tablet */
@media (max-width: 1100px) {
  .shutter-category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .shutter-category-section {
    padding: 28px 0 62px;
  }

  .shutter-category-header {
    margin-bottom: 22px;
  }

  .shutter-category-header h2 {
    font-size: 28px;
  }

  .shutter-category-header p {
    font-size: 14.5px;
    line-height: 1.7;
  }

  .shutter-category-card {
    min-height: 220px;
    padding: 22px;
    border-radius: 22px;
  }

  .shutter-card-content h3 {
    font-size: 22px;
  }

  .shutter-card-content p {
    font-size: 14.5px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .shutter-category-hero {
    padding: 28px 0 18px;
  }

  .shutter-category-eyebrow {
    font-size: 11px;
    margin-bottom: 6px;
  }

  .shutter-category-hero h1 {
    font-size: 30px;
    margin-bottom: 10px;
  }

  .shutter-category-hero p {
    font-size: 14.5px;
  }

  .shutter-category-section {
    padding: 22px 0 54px;
  }

  .shutter-category-header h2 {
    font-size: 24px;
  }

  .shutter-category-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .shutter-category-card {
    min-height: auto;
    padding: 20px 16px;
    border-radius: 18px;
  }

  .shutter-category-card::before {
    display: none;
  }

  .shutter-category-card::after {
    width: 90px;
    height: 90px;
    right: -34px;
    top: -34px;
  }

  .shutter-card-number {
    width: 42px;
    height: 42px;
    border-radius: 13px;
    font-size: 13px;
    margin-bottom: 16px;
  }

  .shutter-card-content h3 {
    font-size: 21px;
    margin-bottom: 10px;
  }

  .shutter-card-content p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 18px;
  }

  .shutter-card-link {
    width: 100%;
    padding: 11px 14px;
    font-size: 12px;
  }
}

/* Hover only desktop */
@media (hover: hover) and (pointer: fine) {
  .handrail-section-card:hover {
    box-shadow: 0 18px 38px rgba(15, 23, 42, 0.09);
    border-color: rgba(227, 6, 19, 0.20);
  }

  .handrail-main-image:hover,
  .handrail-usage-card:hover {
    transform: translateY(-3px);
    transition: transform 0.25s ease;
  }
}

/* Tablet */
@media (max-width: 900px) {
  .handrail-hero {
    padding: 34px 0 22px;
  }

  .handrail-hero h1 {
    font-size: 40px;
  }

  .handrail-hero p {
    font-size: 15.5px;
    line-height: 1.75;
  }

  .handrail-section-card {
    padding: 24px 20px;
  }

  .handrail-section-heading h2 {
    font-size: 25px;
  }

  .handrail-overview-layout {
    grid-template-columns: 240px minmax(0, 1fr);
    gap: 20px;
  }

  .handrail-main-image {
    height: 190px;
  }

  .handrail-overview-content p,
  .handrail-feature-list li {
    font-size: 14.5px;
    line-height: 1.75;
  }

  .handrail-usage-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Mobile */
@media (max-width: 600px) {
  .handrail-content-section {
    padding: 8px 0 54px;
  }

  .handrail-hero {
    padding: 28px 0 18px;
  }

  .handrail-eyebrow {
    font-size: 11px;
    margin-bottom: 6px;
  }

  .handrail-hero h1 {
    font-size: 30px;
    margin-bottom: 10px;
  }

  .handrail-hero p {
    font-size: 14.5px;
  }

  .handrail-section-list {
    gap: 18px;
  }

  .handrail-section-card {
    padding: 20px 16px;
    border-radius: 18px;
  }

  .handrail-feature-card {
    border-left-width: 5px;
  }

  .handrail-section-heading {
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
  }

  .handrail-section-number {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 13px;
    font-size: 14px;
  }

  .handrail-section-heading h2 {
    font-size: 22px;
  }

  .handrail-section-heading p {
    font-size: 13.5px;
  }

  .handrail-overview-layout {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .handrail-main-image {
    width: 84%;
    height: 175px;
    margin: 0 auto;
    border-radius: 14px;
  }

  .handrail-overview-content p,
  .handrail-feature-list li {
    font-size: 14px;
    line-height: 1.7;
  }

  .handrail-usage-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .handrail-usage-card {
    padding: 16px;
    border-radius: 16px;
  }

  .handrail-usage-card h3 {
    font-size: 17px;
  }

  .handrail-usage-card p {
    font-size: 14px;
  }
}

/* Hover only desktop */
@media (hover: hover) and (pointer: fine) {
  .cotta-section-card:hover {
    box-shadow: 0 18px 38px rgba(15, 23, 42, 0.09);
    border-color: rgba(227, 6, 19, 0.20);
  }

  .cotta-main-image:hover,
  .cotta-gallery-item:hover {
    transform: translateY(-3px);
    transition: transform 0.25s ease;
  }
}

/* Tablet */
@media (max-width: 900px) {
  .cotta-hero {
    padding: 34px 0 22px;
  }

  .cotta-hero h1 {
    font-size: 40px;
  }

  .cotta-hero p {
    font-size: 15.5px;
    line-height: 1.75;
  }

  .cotta-section-card {
    padding: 24px 20px;
  }

  .cotta-section-heading h2 {
    font-size: 25px;
  }

  .cotta-overview-layout {
    grid-template-columns: 240px minmax(0, 1fr);
    gap: 20px;
  }

  .cotta-main-image {
    height: 190px;
  }

  .cotta-overview-content p,
  .cotta-feature-list li {
    font-size: 14.5px;
    line-height: 1.75;
  }

  .cotta-gallery {
    grid-template-columns: repeat(2, minmax(0, 240px));
    gap: 16px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .cotta-content-section {
    padding: 8px 0 54px;
  }

  .cotta-hero {
    padding: 28px 0 18px;
  }

  .cotta-eyebrow {
    font-size: 11px;
    margin-bottom: 6px;
  }

  .cotta-hero h1 {
    font-size: 30px;
    margin-bottom: 10px;
  }

  .cotta-hero p {
    font-size: 14.5px;
  }

  .cotta-section-list {
    gap: 18px;
  }

  .cotta-section-card {
    padding: 20px 16px;
    border-radius: 18px;
  }

  .cotta-feature-card {
    border-left-width: 5px;
  }

  .cotta-section-heading {
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
  }

  .cotta-section-number {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 13px;
    font-size: 14px;
  }

  .cotta-section-heading h2 {
    font-size: 22px;
  }

  .cotta-section-heading p {
    font-size: 13.5px;
  }

  .cotta-overview-layout {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .cotta-main-image {
    width: 84%;
    height: 175px;
    margin: 0 auto;
    border-radius: 14px;
  }

  .cotta-overview-content p,
  .cotta-feature-list li {
    font-size: 14px;
    line-height: 1.7;
  }

  .cotta-gallery {
    grid-template-columns: minmax(0, 84%);
    justify-content: center;
    gap: 13px;
  }

  .cotta-gallery-item {
    border-radius: 14px;
    aspect-ratio: 4 / 2.6;
  }
}
/* Hover only desktop */
@media (hover: hover) and (pointer: fine) {
  .facade-system-card:hover {
    box-shadow: 0 18px 38px rgba(15, 23, 42, 0.09);
    border-color: rgba(227, 6, 19, 0.20);
  }

  .facade-system-image:hover {
    transform: translateY(-3px);
    transition: transform 0.25s ease;
  }
}

/* Tablet */
@media (max-width: 900px) {
  .facade-systems-hero {
    padding: 34px 0 22px;
  }

  .facade-systems-hero h1 {
    font-size: 40px;
  }

  .facade-systems-hero p {
    font-size: 15.5px;
    line-height: 1.75;
  }

  .facade-system-card {
    padding: 24px 20px;
  }

  .facade-system-heading h2 {
    font-size: 25px;
  }

  .facade-system-body {
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 20px;
  }

  .facade-system-image {
    height: 190px;
  }

  .facade-system-content li {
    font-size: 14.5px;
    line-height: 1.75;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .facade-systems-content-section {
    padding: 8px 0 54px;
  }

  .facade-systems-hero {
    padding: 28px 0 18px;
  }

  .facade-systems-eyebrow {
    font-size: 11px;
    margin-bottom: 6px;
  }

  .facade-systems-hero h1 {
    font-size: 30px;
    margin-bottom: 10px;
  }

  .facade-systems-hero p {
    font-size: 14.5px;
  }

  .facade-systems-list {
    gap: 18px;
  }

  .facade-system-card {
    padding: 20px 16px;
    border-radius: 18px;
  }

  .facade-feature-card {
    border-left-width: 5px;
  }

  .facade-system-heading {
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
  }

  .facade-system-number {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 13px;
    font-size: 14px;
  }

  .facade-system-heading h2 {
    font-size: 22px;
  }

  .facade-system-heading p {
    font-size: 13.5px;
  }

  .facade-system-body {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .facade-system-image {
    width: 84%;
    height: 175px;
    margin: 0 auto;
    border-radius: 14px;
  }

  .facade-system-content h3 {
    font-size: 17px;
  }

  .facade-system-content li {
    font-size: 14px;
    line-height: 1.7;
  }

  .facade-system-label {
    font-size: 14px;
  }
}

/* Hover only desktop */
@media (hover: hover) and (pointer: fine) {
  .aluminium-system-card:hover {
    box-shadow: 0 18px 38px rgba(15, 23, 42, 0.09);
    border-color: rgba(227, 6, 19, 0.20);
  }

  .aluminium-system-image:hover {
    transform: translateY(-3px);
    transition: transform 0.25s ease;
  }
}

/* Tablet */
@media (max-width: 900px) {
  .aluminium-systems-hero {
    padding: 34px 0 22px;
  }

  .aluminium-systems-hero h1 {
    font-size: 40px;
  }

  .aluminium-systems-hero p {
    font-size: 15.5px;
    line-height: 1.75;
  }

  .aluminium-system-card {
    padding: 24px 20px;
  }

  .aluminium-system-heading h2 {
    font-size: 25px;
  }

  .aluminium-system-body {
    grid-template-columns: 240px minmax(0, 1fr);
    gap: 20px;
  }

  .aluminium-system-image {
    height: 190px;
  }

  .aluminium-system-content p,
  .aluminium-system-content li {
    font-size: 14.5px;
    line-height: 1.75;
  }

  .aluminium-spec-grid {
    grid-template-columns: 1fr;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .aluminium-systems-content-section {
    padding: 8px 0 54px;
  }

  .aluminium-systems-hero {
    padding: 28px 0 18px;
  }

  .aluminium-systems-eyebrow {
    font-size: 11px;
    margin-bottom: 6px;
  }

  .aluminium-systems-hero h1 {
    font-size: 30px;
    margin-bottom: 10px;
  }

  .aluminium-systems-hero p {
    font-size: 14.5px;
  }

  .aluminium-systems-list {
    gap: 18px;
  }

  .aluminium-system-card {
    padding: 20px 16px;
    border-radius: 18px;
  }

  .aluminium-feature-card {
    border-left-width: 5px;
  }

  .aluminium-system-heading {
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
  }

  .aluminium-system-number {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 13px;
    font-size: 14px;
  }

  .aluminium-system-heading h2 {
    font-size: 22px;
  }

  .aluminium-system-heading p {
    font-size: 13.5px;
  }

  .aluminium-system-body {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .aluminium-system-image {
    width: 84%;
    height: 175px;
    margin: 0 auto;
    border-radius: 14px;
  }

  .aluminium-system-content h3 {
    font-size: 17px;
  }

  .aluminium-system-content p,
  .aluminium-system-content li {
    font-size: 14px;
    line-height: 1.7;
  }

  .aluminium-spec-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .aluminium-spec-grid span {
    font-size: 13.5px;
    padding: 10px 12px;
  }
}

/* Hover only desktop */
@media (hover: hover) and (pointer: fine) {
  .guillotine-windows-section-card:hover {
    box-shadow: 0 18px 38px rgba(15, 23, 42, 0.09);
    border-color: rgba(227, 6, 19, 0.20);
  }

  .guillotine-windows-gallery-item:hover,
  .guillotine-usage-card:hover,
  .guillotine-color-card:hover {
    transform: translateY(-3px);
    transition: transform 0.25s ease;
  }
}

/* Tablet */
@media (max-width: 900px) {
  .guillotine-windows-hero {
    padding: 34px 0 22px;
  }

  .guillotine-windows-hero h1 {
    font-size: 40px;
  }

  .guillotine-windows-hero p {
    font-size: 15.5px;
    line-height: 1.75;
  }

  .guillotine-windows-section-card {
    padding: 24px 20px;
  }

  .guillotine-windows-section-heading h2 {
    font-size: 26px;
  }

  .guillotine-windows-section-card p,
  .guillotine-feature-list li {
    font-size: 15px;
    line-height: 1.8;
  }

  .guillotine-windows-gallery {
    grid-template-columns: repeat(2, minmax(0, 240px));
  }

  .guillotine-usage-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .guillotine-color-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Mobile */
@media (max-width: 600px) {
  .guillotine-windows-content-section {
    padding: 8px 0 54px;
  }

  .guillotine-windows-hero {
    padding: 28px 0 18px;
  }

  .guillotine-windows-eyebrow {
    font-size: 11px;
    margin-bottom: 6px;
  }

  .guillotine-windows-hero h1 {
    font-size: 30px;
    margin-bottom: 10px;
  }

  .guillotine-windows-hero p {
    font-size: 14.5px;
  }

  .guillotine-windows-section-list {
    gap: 18px;
  }

  .guillotine-windows-section-card {
    padding: 20px 16px;
    border-radius: 18px;
  }

  .guillotine-windows-feature-card {
    border-left-width: 5px;
  }

  .guillotine-windows-section-heading {
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
  }

  .guillotine-windows-section-number {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 13px;
    font-size: 14px;
  }

  .guillotine-windows-section-heading h2 {
    font-size: 22px;
  }

  .guillotine-windows-section-card p,
  .guillotine-feature-list li {
    font-size: 14px;
    line-height: 1.75;
  }

  .guillotine-windows-gallery {
    grid-template-columns: minmax(0, 84%);
    justify-content: center;
    gap: 13px;
    margin-top: 16px;
  }

  .guillotine-windows-gallery-item {
    aspect-ratio: 4 / 2.6;
    border-radius: 14px;
  }

  .guillotine-usage-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 16px;
  }

  .guillotine-usage-card {
    padding: 16px;
    border-radius: 16px;
  }

  .guillotine-color-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 16px;
  }

  .guillotine-color-card {
    border-radius: 14px;
    padding: 12px 10px;
    font-size: 13px;
  }

  .guillotine-color-swatch {
    max-width: 64px;
    height: 64px;
    border-radius: 10px;
  }
}

/* Hover only desktop */
@media (hover: hover) and (pointer: fine) {
  .pull-slide-section-card:hover {
    box-shadow: 0 18px 38px rgba(15, 23, 42, 0.09);
    border-color: rgba(227, 6, 19, 0.20);
  }

  .pull-slide-gallery-item:hover,
  .pull-slide-usage-card:hover,
  .pull-slide-color-card:hover {
    transform: translateY(-3px);
    transition: transform 0.25s ease;
  }
}

/* Tablet */
@media (max-width: 900px) {
  .pull-slide-hero {
    padding: 34px 0 22px;
  }

  .pull-slide-hero h1 {
    font-size: 40px;
  }

  .pull-slide-hero p {
    font-size: 15.5px;
    line-height: 1.75;
  }

  .pull-slide-section-card {
    padding: 24px 20px;
  }

  .pull-slide-section-heading h2 {
    font-size: 26px;
  }

  .pull-slide-section-card p,
  .pull-slide-feature-list li {
    font-size: 15px;
    line-height: 1.8;
  }

  .pull-slide-gallery {
    grid-template-columns: repeat(2, minmax(0, 240px));
  }

  .pull-slide-usage-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pull-slide-color-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Mobile */
@media (max-width: 600px) {
  .pull-slide-content-section {
    padding: 8px 0 54px;
  }

  .pull-slide-hero {
    padding: 28px 0 18px;
  }

  .pull-slide-eyebrow {
    font-size: 11px;
    margin-bottom: 6px;
  }

  .pull-slide-hero h1 {
    font-size: 30px;
    margin-bottom: 10px;
  }

  .pull-slide-hero p {
    font-size: 14.5px;
  }

  .pull-slide-section-list {
    gap: 18px;
  }

  .pull-slide-section-card {
    padding: 20px 16px;
    border-radius: 18px;
  }

  .pull-slide-feature-card {
    border-left-width: 5px;
  }

  .pull-slide-section-heading {
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
  }

  .pull-slide-section-number {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 13px;
    font-size: 14px;
  }

  .pull-slide-section-heading h2 {
    font-size: 22px;
  }

  .pull-slide-section-card p,
  .pull-slide-feature-list li {
    font-size: 14px;
    line-height: 1.75;
  }

  .pull-slide-gallery {
    grid-template-columns: minmax(0, 84%);
    justify-content: center;
    gap: 13px;
    margin-top: 16px;
  }

  .pull-slide-gallery-item {
    aspect-ratio: 4 / 2.6;
    border-radius: 14px;
  }

  .pull-slide-usage-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 16px;
  }

  .pull-slide-usage-card {
    padding: 16px;
    border-radius: 16px;
  }

  .pull-slide-color-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 16px;
  }

  .pull-slide-color-card {
    border-radius: 14px;
    padding: 12px 10px;
    font-size: 13px;
  }

  .pull-slide-color-swatch {
    max-width: 64px;
    height: 64px;
    border-radius: 10px;
  }
}
/* Hover only desktop */
@media (hover: hover) and (pointer: fine) {
  .folding-systems-section-card:hover {
    box-shadow: 0 18px 38px rgba(15, 23, 42, 0.09);
    border-color: rgba(227, 6, 19, 0.20);
  }

  .folding-systems-gallery-item:hover,
  .folding-usage-card:hover,
  .folding-color-card:hover {
    transform: translateY(-3px);
    transition: transform 0.25s ease;
  }
}

/* Tablet */
@media (max-width: 900px) {
  .folding-systems-hero {
    padding: 34px 0 22px;
  }

  .folding-systems-hero h1 {
    font-size: 40px;
  }

  .folding-systems-hero p {
    font-size: 15.5px;
    line-height: 1.75;
  }

  .folding-systems-section-card {
    padding: 24px 20px;
  }

  .folding-systems-section-heading h2 {
    font-size: 26px;
  }

  .folding-systems-section-card p,
  .folding-feature-list li {
    font-size: 15px;
    line-height: 1.8;
  }

  .folding-systems-gallery {
    grid-template-columns: repeat(2, minmax(0, 240px));
  }

  .folding-usage-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .folding-color-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Mobile */
@media (max-width: 600px) {
  .folding-systems-content-section {
    padding: 8px 0 54px;
  }

  .folding-systems-hero {
    padding: 28px 0 18px;
  }

  .folding-systems-eyebrow {
    font-size: 11px;
    margin-bottom: 6px;
  }

  .folding-systems-hero h1 {
    font-size: 30px;
    margin-bottom: 10px;
  }

  .folding-systems-hero p {
    font-size: 14.5px;
  }

  .folding-systems-section-list {
    gap: 18px;
  }

  .folding-systems-section-card {
    padding: 20px 16px;
    border-radius: 18px;
  }

  .folding-systems-feature-card {
    border-left-width: 5px;
  }

  .folding-systems-section-heading {
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
  }

  .folding-systems-section-number {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 13px;
    font-size: 14px;
  }

  .folding-systems-section-heading h2 {
    font-size: 22px;
  }

  .folding-systems-section-card p,
  .folding-feature-list li {
    font-size: 14px;
    line-height: 1.75;
  }

  .folding-systems-gallery {
    grid-template-columns: minmax(0, 84%);
    justify-content: center;
    gap: 13px;
    margin-top: 16px;
  }

  .folding-systems-gallery-item {
    aspect-ratio: 4 / 2.6;
    border-radius: 14px;
  }

  .folding-usage-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 16px;
  }

  .folding-usage-card {
    padding: 16px;
    border-radius: 16px;
  }

  .folding-color-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 16px;
  }

  .folding-color-card {
    border-radius: 14px;
    padding: 12px 10px;
    font-size: 13px;
  }

  .folding-color-swatch {
    max-width: 64px;
    height: 64px;
    border-radius: 10px;
  }
}

/* Hover only desktop */
@media (hover: hover) and (pointer: fine) {
  .sliding-series-section-card:hover {
    box-shadow: 0 18px 38px rgba(15, 23, 42, 0.09);
    border-color: rgba(227, 6, 19, 0.20);
  }

  .sliding-series-gallery-item:hover,
  .sliding-usage-card:hover {
    transform: translateY(-3px);
    transition: transform 0.25s ease;
  }
}

/* Tablet */
@media (max-width: 900px) {
  .sliding-series-hero {
    padding: 34px 0 22px;
  }

  .sliding-series-hero h1 {
    font-size: 40px;
  }

  .sliding-series-hero p {
    font-size: 15.5px;
    line-height: 1.75;
  }

  .sliding-series-section-card {
    padding: 24px 20px;
  }

  .sliding-series-section-heading h2 {
    font-size: 26px;
  }

  .sliding-series-section-card p,
  .sliding-feature-list li {
    font-size: 15px;
    line-height: 1.8;
  }

  .sliding-series-gallery {
    grid-template-columns: repeat(2, minmax(0, 240px));
  }

  .sliding-usage-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Mobile */
@media (max-width: 600px) {
  .sliding-series-content-section {
    padding: 8px 0 54px;
  }

  .sliding-series-hero {
    padding: 28px 0 18px;
  }

  .sliding-series-eyebrow {
    font-size: 11px;
    margin-bottom: 6px;
  }

  .sliding-series-hero h1 {
    font-size: 30px;
    margin-bottom: 10px;
  }

  .sliding-series-hero p {
    font-size: 14.5px;
  }

  .sliding-series-section-list {
    gap: 18px;
  }

  .sliding-series-section-card {
    padding: 20px 16px;
    border-radius: 18px;
  }

  .sliding-series-feature-card {
    border-left-width: 5px;
  }

  .sliding-series-section-heading {
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
  }

  .sliding-series-section-number {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 13px;
    font-size: 14px;
  }

  .sliding-series-section-heading h2 {
    font-size: 22px;
  }

  .sliding-series-section-card p,
  .sliding-feature-list li {
    font-size: 14px;
    line-height: 1.75;
  }

  .sliding-series-gallery {
    grid-template-columns: minmax(0, 84%);
    justify-content: center;
    gap: 13px;
    margin-top: 16px;
  }

  .sliding-series-gallery-item {
    aspect-ratio: 4 / 2.6;
    border-radius: 14px;
  }

  .sliding-usage-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 16px;
  }

  .sliding-usage-card {
    padding: 16px;
    border-radius: 16px;
  }
}


/* Hover only desktop */
@media (hover: hover) and (pointer: fine) {
  .pivot-windows-section-card:hover {
    box-shadow: 0 18px 38px rgba(15, 23, 42, 0.09);
    border-color: rgba(227, 6, 19, 0.20);
  }

  .pivot-windows-gallery-item:hover,
  .pivot-form-card:hover,
  .pivot-color-card:hover {
    transform: translateY(-3px);
    transition: transform 0.25s ease;
  }
}

/* Tablet */
@media (max-width: 900px) {
  .pivot-windows-hero {
    padding: 34px 0 22px;
  }

  .pivot-windows-hero h1 {
    font-size: 40px;
  }

  .pivot-windows-hero p {
    font-size: 15.5px;
    line-height: 1.75;
  }

  .pivot-windows-section-card {
    padding: 24px 20px;
  }

  .pivot-windows-section-heading h2 {
    font-size: 26px;
  }

  .pivot-windows-section-card p,
  .pivot-feature-list li {
    font-size: 15px;
    line-height: 1.8;
  }

  .pivot-windows-gallery {
    grid-template-columns: repeat(2, minmax(0, 240px));
  }

  .pivot-form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pivot-color-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Mobile */
@media (max-width: 600px) {
  .pivot-windows-content-section {
    padding: 8px 0 54px;
  }

  .pivot-windows-hero {
    padding: 28px 0 18px;
  }

  .pivot-windows-eyebrow {
    font-size: 11px;
    margin-bottom: 6px;
  }

  .pivot-windows-hero h1 {
    font-size: 30px;
    margin-bottom: 10px;
  }

  .pivot-windows-hero p {
    font-size: 14.5px;
  }

  .pivot-windows-section-list {
    gap: 18px;
  }

  .pivot-windows-section-card {
    padding: 20px 16px;
    border-radius: 18px;
  }

  .pivot-windows-feature-card {
    border-left-width: 5px;
  }

  .pivot-windows-section-heading {
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
  }

  .pivot-windows-section-number {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 13px;
    font-size: 14px;
  }

  .pivot-windows-section-heading h2 {
    font-size: 22px;
  }

  .pivot-windows-section-card p,
  .pivot-feature-list li {
    font-size: 14px;
    line-height: 1.75;
  }

  .pivot-windows-gallery {
    grid-template-columns: minmax(0, 84%);
    justify-content: center;
    gap: 13px;
    margin-top: 16px;
  }

  .pivot-windows-gallery-item {
    aspect-ratio: 4 / 2.6;
    border-radius: 14px;
  }

  .pivot-form-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 16px;
  }

  .pivot-form-card {
    padding: 16px;
    border-radius: 16px;
  }

  .pivot-color-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 16px;
  }

  .pivot-color-card {
    border-radius: 14px;
    padding: 12px 10px;
    font-size: 13px;
  }

  .pivot-color-swatch {
    max-width: 64px;
    height: 64px;
    border-radius: 10px;
  }
}

/* Hover sadece bilgisayarda */
@media (hover: hover) and (pointer: fine) {
  .window-system-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 44px rgba(15, 23, 42, 0.12);
    border-color: rgba(227, 6, 19, 0.25);
  }

  .window-system-card:hover::before {
    opacity: 1;
  }

  .window-system-card:hover .window-system-number {
    background-color: #ff304f;
  }

  .window-system-card:hover h3,
  .window-system-card:hover p {
    color: #ffffff;
  }

  .window-system-card:hover .window-system-link {
    background-color: #ffffff;
    color: #0b2c55;
    transform: translateX(3px);
  }
}

/* Tablet */
@media (max-width: 1100px) {
  .window-systems-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .window-systems-section {
    padding: 24px 0 62px;
  }

  .window-systems-header {
    margin-bottom: 22px;
  }

  .window-systems-header h2 {
    font-size: 32px;
  }

  .window-systems-header p {
    font-size: 14.5px;
    line-height: 1.7;
  }

  .window-system-card {
    min-height: 220px;
    padding: 22px;
    border-radius: 22px;
  }

  .window-system-content h3 {
    font-size: 21px;
  }

  .window-system-content p {
    font-size: 14.5px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .window-systems-section {
    padding: 18px 0 54px;
  }

  .window-systems-eyebrow {
    font-size: 11px;
    margin-bottom: 6px;
  }

  .window-systems-header h2 {
    font-size: 28px;
    margin-bottom: 10px;
  }

  .window-systems-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .window-system-card {
    min-height: auto;
    padding: 20px 16px;
    border-radius: 18px;
  }

  .window-system-card::before {
    display: none;
  }

  .window-system-card::after {
    width: 90px;
    height: 90px;
    right: -34px;
    top: -34px;
  }

  .window-system-number {
    width: 42px;
    height: 42px;
    border-radius: 13px;
    font-size: 13px;
    margin-bottom: 16px;
  }

  .window-system-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .window-system-content p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 18px;
  }

  .window-system-link {
    width: 100%;
    padding: 11px 14px;
    font-size: 12px;
  }
}

/* Hover only desktop */
@media (hover: hover) and (pointer: fine) {
  .roller-shutter-section-card:hover {
    box-shadow: 0 18px 38px rgba(15, 23, 42, 0.09);
    border-color: rgba(227, 6, 19, 0.20);
  }

  .roller-shutter-gallery-item:hover,
  .roller-color-card:hover {
    transform: translateY(-3px);
    transition: transform 0.25s ease;
  }
}

/* Tablet */
@media (max-width: 900px) {
  .roller-shutter-hero {
    padding: 34px 0 22px;
  }

  .roller-shutter-hero h1 {
    font-size: 40px;
  }

  .roller-shutter-hero p {
    font-size: 15.5px;
    line-height: 1.75;
  }

  .roller-shutter-section-card {
    padding: 24px 20px;
  }

  .roller-shutter-section-heading h2 {
    font-size: 26px;
  }

  .roller-shutter-section-card p,
  .roller-feature-list li {
    font-size: 15px;
    line-height: 1.8;
  }

  .roller-shutter-gallery {
    grid-template-columns: repeat(2, minmax(0, 240px));
    justify-content: flex-start;
  }

  .roller-color-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Mobile */
@media (max-width: 600px) {
  .roller-shutter-content-section {
    padding: 8px 0 54px;
  }

  .roller-shutter-hero {
    padding: 28px 0 18px;
  }

  .roller-shutter-eyebrow {
    font-size: 11px;
    margin-bottom: 6px;
  }

  .roller-shutter-hero h1 {
    font-size: 30px;
    margin-bottom: 10px;
  }

  .roller-shutter-hero p {
    font-size: 14.5px;
  }

  .roller-shutter-section-list {
    gap: 18px;
  }

  .roller-shutter-section-card {
    padding: 20px 16px;
    border-radius: 18px;
  }

  .roller-shutter-feature-card {
    border-left-width: 5px;
  }

  .roller-shutter-section-heading {
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
  }

  .roller-shutter-section-number {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 13px;
    font-size: 14px;
  }

  .roller-shutter-section-heading h2 {
    font-size: 22px;
  }

  .roller-shutter-section-card p,
  .roller-feature-list li {
    font-size: 14px;
    line-height: 1.75;
  }

  .roller-shutter-gallery {
    grid-template-columns: minmax(0, 84%);
    justify-content: center;
    gap: 13px;
    margin-top: 16px;
  }

  .roller-shutter-gallery-item {
    aspect-ratio: 4 / 2.6;
    border-radius: 14px;
  }

  .roller-color-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 16px;
  }

  .roller-color-card {
    border-radius: 14px;
    padding: 12px 10px;
    font-size: 13px;
  }

  .roller-color-swatch {
    max-width: 64px;
    height: 64px;
    border-radius: 10px;
  }
}

/* Hover only desktop */
@media (hover: hover) and (pointer: fine) {
  .shutter-systems-section-card:hover {
    box-shadow: 0 18px 38px rgba(15, 23, 42, 0.09);
    border-color: rgba(227, 6, 19, 0.20);
  }

  .shutter-systems-gallery-item:hover,
  .shutter-color-card:hover {
    transform: translateY(-3px);
    transition: transform 0.25s ease;
  }
}

/* Tablet */
@media (max-width: 900px) {
  .shutter-systems-hero {
    padding: 34px 0 22px;
  }

  .shutter-systems-hero h1 {
    font-size: 40px;
  }

  .shutter-systems-hero p {
    font-size: 15.5px;
    line-height: 1.75;
  }

  .shutter-systems-section-card {
    padding: 24px 20px;
  }

  .shutter-systems-section-heading h2 {
    font-size: 26px;
  }

  .shutter-systems-section-card p,
  .shutter-feature-list li {
    font-size: 15px;
    line-height: 1.8;
  }

  .shutter-systems-gallery {
    grid-template-columns: repeat(2, minmax(0, 240px));
    justify-content: flex-start;
  }

  .shutter-color-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Mobile */
@media (max-width: 600px) {
  .shutter-systems-content-section {
    padding: 8px 0 54px;
  }

  .shutter-systems-hero {
    padding: 28px 0 18px;
  }

  .shutter-systems-eyebrow {
    font-size: 11px;
    margin-bottom: 6px;
  }

  .shutter-systems-hero h1 {
    font-size: 30px;
    margin-bottom: 10px;
  }

  .shutter-systems-hero p {
    font-size: 14.5px;
  }

  .shutter-systems-section-list {
    gap: 18px;
  }

  .shutter-systems-section-card {
    padding: 20px 16px;
    border-radius: 18px;
  }

  .shutter-systems-feature-card {
    border-left-width: 5px;
  }

  .shutter-systems-section-heading {
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
  }

  .shutter-systems-section-number {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 13px;
    font-size: 14px;
  }

  .shutter-systems-section-heading h2 {
    font-size: 22px;
  }

  .shutter-systems-section-card p,
  .shutter-feature-list li {
    font-size: 14px;
    line-height: 1.75;
  }

  .shutter-systems-gallery {
    grid-template-columns: minmax(0, 86%);
    justify-content: center;
    gap: 13px;
    margin-top: 16px;
  }

  .shutter-systems-gallery-item {
    aspect-ratio: 4 / 2.5;
    border-radius: 14px;
  }

  .shutter-color-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 16px;
  }

  .shutter-color-card {
    border-radius: 14px;
    padding: 12px 10px;
    font-size: 13px;
  }

  .shutter-color-swatch {
    max-width: 64px;
    height: 64px;
    border-radius: 10px;
  }
}

/* Hover sadece bilgisayarda */
@media (hover: hover) and (pointer: fine) {
  .related-system-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 44px rgba(15, 23, 42, 0.12);
    border-color: rgba(227, 6, 19, 0.25);
  }

  .related-system-card:hover::before {
    opacity: 1;
  }

  .related-system-card:hover .related-system-number {
    background-color: #ff304f;
  }

  .related-system-card:hover h3,
  .related-system-card:hover p {
    color: #ffffff;
  }

  .related-system-card:hover .related-system-link {
    background-color: #ffffff;
    color: #0b2c55;
    transform: translateX(3px);
  }
}

/* Tablet */
@media (max-width: 900px) {
  .related-systems-section {
    padding: 18px 0 62px;
  }

  .related-systems-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .related-system-card {
    min-height: 220px;
    padding: 24px 20px;
    border-radius: 22px;
  }

  .related-system-content h3 {
    font-size: 22px;
  }

  .related-system-content p {
    font-size: 14.5px;
    line-height: 1.7;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .related-systems-section {
    padding: 14px 0 54px;
  }

  .related-systems-header {
    margin-bottom: 20px;
  }

  .related-systems-eyebrow {
    font-size: 11px;
    margin-bottom: 6px;
  }

  .related-systems-header h2 {
    font-size: 28px;
    margin-bottom: 10px;
  }

  .related-systems-header p {
    font-size: 14.5px;
    line-height: 1.7;
  }

  .related-systems-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .related-system-card {
    min-height: auto;
    padding: 20px 16px;
    border-radius: 18px;
  }

  .related-system-card::before {
    display: none;
  }

  .related-system-card::after {
    width: 90px;
    height: 90px;
    right: -34px;
    top: -34px;
  }

  .related-system-number {
    width: 42px;
    height: 42px;
    border-radius: 13px;
    font-size: 13px;
    margin-bottom: 16px;
  }

  .related-system-content h3 {
    font-size: 21px;
    margin-bottom: 10px;
  }

  .related-system-content p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 18px;
  }

  .related-system-link {
    width: 100%;
    padding: 11px 14px;
    font-size: 12px;
  }
}

/* Hover only desktop */
@media (hover: hover) and (pointer: fine) {
  .support-steels-section-card:hover {
    box-shadow: 0 18px 38px rgba(15, 23, 42, 0.09);
    border-color: rgba(227, 6, 19, 0.20);
  }

  .support-steels-gallery-item:hover {
    transform: translateY(-3px);
    transition: transform 0.25s ease;
  }
}

/* Tablet */
@media (max-width: 900px) {
  .support-steels-hero {
    padding: 34px 0 22px;
  }

  .support-steels-hero h1 {
    font-size: 40px;
  }

  .support-steels-hero p {
    font-size: 15.5px;
    line-height: 1.75;
  }

  .support-steels-section-card {
    padding: 24px 20px;
  }

  .support-steels-section-heading h2 {
    font-size: 26px;
  }

  .support-steels-section-card p {
    font-size: 15px;
    line-height: 1.8;
  }

  .support-steels-gallery {
    grid-template-columns: repeat(2, minmax(0, 240px));
    justify-content: flex-start;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .support-steels-content-section {
    padding: 8px 0 54px;
  }

  .support-steels-hero {
    padding: 28px 0 18px;
  }

  .support-steels-eyebrow {
    font-size: 11px;
    margin-bottom: 6px;
  }

  .support-steels-hero h1 {
    font-size: 30px;
    margin-bottom: 10px;
  }

  .support-steels-hero p {
    font-size: 14.5px;
  }

  .support-steels-section-list {
    gap: 18px;
  }

  .support-steels-section-card {
    padding: 20px 16px;
    border-radius: 18px;
  }

  .support-steels-feature-card {
    border-left-width: 5px;
  }

  .support-steels-section-heading {
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
  }

  .support-steels-section-number {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 13px;
    font-size: 14px;
  }

  .support-steels-section-heading h2 {
    font-size: 22px;
  }

  .support-steels-section-card p {
    font-size: 14px;
    line-height: 1.75;
  }

  .support-steels-gallery {
    grid-template-columns: minmax(0, 86%);
    justify-content: center;
    gap: 13px;
    margin-top: 16px;
  }

  .support-steels-gallery-item {
    aspect-ratio: 4 / 2.5;
    border-radius: 14px;
  }

  .support-steels-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

/* Hover only desktop */
@media (hover: hover) and (pointer: fine) {
  .epdm-section-card:hover {
    box-shadow: 0 18px 38px rgba(15, 23, 42, 0.09);
    border-color: rgba(227, 6, 19, 0.20);
  }

  .epdm-gallery-item:hover {
    transform: translateY(-3px);
    transition: transform 0.25s ease;
  }
}

/* Tablet */
@media (max-width: 900px) {
  .epdm-hero {
    padding: 34px 0 22px;
  }

  .epdm-hero h1 {
    font-size: 40px;
  }

  .epdm-hero p {
    font-size: 15.5px;
    line-height: 1.75;
  }

  .epdm-section-card {
    padding: 24px 20px;
  }

  .epdm-section-heading h2 {
    font-size: 26px;
  }

  .epdm-section-card p {
    font-size: 15px;
    line-height: 1.8;
  }

  .epdm-gallery {
    grid-template-columns: repeat(2, minmax(0, 240px));
    justify-content: flex-start;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .epdm-content-section {
    padding: 8px 0 54px;
  }

  .epdm-hero {
    padding: 28px 0 18px;
  }

  .epdm-eyebrow {
    font-size: 11px;
    margin-bottom: 6px;
  }

  .epdm-hero h1 {
    font-size: 30px;
    margin-bottom: 10px;
  }

  .epdm-hero p {
    font-size: 14.5px;
  }

  .epdm-section-list {
    gap: 18px;
  }

  .epdm-section-card {
    padding: 20px 16px;
    border-radius: 18px;
  }

  .epdm-feature-card {
    border-left-width: 5px;
  }

  .epdm-section-heading {
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
  }

  .epdm-section-number {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 13px;
    font-size: 14px;
  }

  .epdm-section-heading h2 {
    font-size: 22px;
  }

  .epdm-section-card p {
    font-size: 14px;
    line-height: 1.75;
  }

  .epdm-gallery {
    grid-template-columns: minmax(0, 86%);
    justify-content: center;
    gap: 13px;
    margin-top: 16px;
  }

  .epdm-gallery-item {
    aspect-ratio: 4 / 2.5;
    border-radius: 14px;
  }

  .epdm-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

/* Hover only desktop */
@media (hover: hover) and (pointer: fine) {
  .accessory-section-card:hover {
    box-shadow: 0 18px 38px rgba(15, 23, 42, 0.09);
    border-color: rgba(227, 6, 19, 0.20);
  }

  .accessory-gallery-item:hover {
    transform: translateY(-3px);
    transition: transform 0.25s ease;
  }
}

/* Tablet */
@media (max-width: 900px) {
  .accessories-hero {
    padding: 34px 0 22px;
  }

  .accessories-hero h1 {
    font-size: 40px;
  }

  .accessories-hero p {
    font-size: 15.5px;
    line-height: 1.75;
  }

  .accessories-content-card {
    padding: 26px 22px;
    border-radius: 22px;
  }

  .accessories-content-inner p {
    font-size: 15px;
    line-height: 1.85;
  }

  .accessory-section-card {
    padding: 24px 20px;
  }

  .accessory-section-heading h2 {
    font-size: 26px;
  }

  .accessory-section-card p {
    font-size: 15px;
    line-height: 1.8;
  }

  .accessories-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Mobile */
@media (max-width: 600px) {
  .accessories-content-section {
    padding: 8px 0 54px;
  }

  .accessories-hero {
    padding: 28px 0 18px;
  }

  .accessories-eyebrow {
    font-size: 11px;
    margin-bottom: 6px;
  }

  .accessories-hero h1 {
    font-size: 30px;
    margin-bottom: 10px;
  }

  .accessories-hero p {
    font-size: 14.5px;
  }

  .accessories-content-card {
    padding: 20px 16px;
    border-left-width: 5px;
    border-radius: 18px;
    margin-bottom: 22px;
  }

  .accessories-content-inner p {
    font-size: 14.5px;
    line-height: 1.8;
    margin-bottom: 18px;
  }

  .accessories-section-list {
    gap: 18px;
  }

  .accessory-section-card {
    padding: 20px 16px;
    border-radius: 18px;
  }

  .accessory-section-heading {
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
  }

  .accessory-section-number {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 13px;
    font-size: 14px;
  }

  .accessory-section-heading h2 {
    font-size: 22px;
  }

  .accessory-section-card p {
    font-size: 14px;
    line-height: 1.75;
  }

  .accessories-gallery {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 18px;
  }

  .accessory-gallery-item {
    border-radius: 15px;
  }
}

/* Hover sadece bilgisayarda */
@media (hover: hover) and (pointer: fine) {
  .detail-profile-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 38px rgba(15, 23, 42, 0.09);
    border-color: rgba(227, 6, 19, 0.20);
  }
}

/* Large tablet */
@media (max-width: 1200px) {
  .detail-profiles-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Tablet */
@media (max-width: 900px) {
  .detail-profiles-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .detail-profiles-hero {
    padding: 34px 0 22px;
  }

  .detail-profiles-hero h1 {
    font-size: 40px;
  }

  .detail-profiles-hero p {
    font-size: 15.5px;
    line-height: 1.75;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .accessories-gallery {
    grid-template-columns: minmax(0, 70%);
    justify-content: left;
    gap: 14px;
  }

  .accessory-gallery-item {
    aspect-ratio: 4 / 2.6;
    border-radius: 14px;
  }
}
  .detail-profiles-eyebrow {
    font-size: 11px;
    margin-bottom: 6px;
  }

  .detail-profiles-hero h1 {
    font-size: 30px;
    margin-bottom: 10px;
  }

  .detail-profiles-hero p {
    font-size: 14.5px;
  }

  .detail-profile-image-wrap {
    padding: 16px;
    aspect-ratio: 4 / 3;
  }

  .detail-profile-content {
    padding: 14px 14px 16px;
  }

  .detail-profile-content h3 {
    font-size: 16px;
  }

  .detail-profile-content p {
    font-size: 13.5px;
    line-height: 1.65;
  }


/* Hover only on desktop */
@media (hover: hover) and (pointer: fine) {
  .raw-highlight-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 38px rgba(15, 23, 42, 0.10);
    border-color: rgba(227, 6, 19, 0.25);
  }
}

/* 1200px and below */
@media (max-width: 1200px) {
  .raw-highlight-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Tablet */
@media (max-width: 768px) {
  .raw-hero {
    padding: 42px 0 24px;
  }

  .raw-hero h1 {
    font-size: 38px;
  }

  .raw-hero p {
    font-size: 15.5px;
    line-height: 1.75;
  }

  .raw-content-section {
    padding: 6px 0 56px;
  }

  .raw-content-card {
    padding: 24px 20px;
    border-radius: 20px;
    margin-bottom: 24px;
  }

  .raw-content-inner p {
    font-size: 15px;
    line-height: 1.85;
    margin-bottom: 18px;
  }

  .raw-highlight-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 24px;
  }

  .raw-highlight-card {
    padding: 22px 20px;
    border-radius: 20px;
  }

  .raw-highlight-card h3 {
    font-size: 19px;
  }

  .raw-highlight-card p {
    font-size: 14.5px;
    line-height: 1.7;
  }

  .raw-note-box {
    flex-direction: column;
    gap: 14px;
    padding: 22px 20px;
    border-radius: 20px;
  }

  .raw-note-content h2 {
    font-size: 21px;
  }

  .raw-note-content p {
    font-size: 14.5px;
    line-height: 1.75;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .raw-material-page .container {
    width: 92%;
  }

  .raw-hero {
    padding: 34px 0 18px;
  }

  .raw-eyebrow {
    font-size: 11px;
  }

  .raw-hero h1 {
    font-size: 31px;
    margin-bottom: 10px;
  }

  .raw-hero p {
    font-size: 14.5px;
  }

  .raw-content-card {
    padding: 20px 16px;
    border-left-width: 5px;
  }

  .raw-content-inner p {
    font-size: 14.5px;
    line-height: 1.8;
  }

  .raw-highlight-card {
    padding: 20px 16px;
  }

  .raw-highlight-number {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    font-size: 14px;
    margin-bottom: 14px;
  }

  .raw-highlight-card h3 {
    font-size: 18px;
  }

  .raw-highlight-card p {
    font-size: 14px;
  }

  .raw-note-box {
    padding: 20px 16px;
  }

  .raw-note-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    font-size: 18px;
  }

  .raw-note-content h2 {
    font-size: 19px;
  }

  .raw-note-content p {
    font-size: 14px;
  }
}

/* HOVER SADECE BİLGİSAYARDA ÇALIŞSIN */
@media (hover: hover) and (pointer: fine) {
  .integrated-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 48px rgba(15, 23, 42, 0.14);
    border-color: rgba(255, 48, 84, 0.32);
  }

  .integrated-card:hover::before {
    opacity: 1;
  }

  .integrated-card:hover .integrated-card-icon {
    background-color: #ff304f;
    color: #ffffff;
  }

  .integrated-card:hover h2,
  .integrated-card:hover p {
    color: #ffffff;
  }

  .integrated-card:hover .integrated-card-link {
    background-color: #ffffff;
    color: #233540;
    transform: translateX(3px);
  }
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .integrated-grid {
    grid-template-columns: repeat(2, minmax(0, 330px));
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .integrated-hero {
    padding: 38px 0 26px;
  }

  .integrated-header h1 {
    font-size: 32px;
  }

  .integrated-header p {
    font-size: 15px;
    line-height: 1.7;
  }

  .integrated-card-section {
    padding: 24px 0 52px;
  }

  .integrated-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
  }

  .integrated-card {
    min-height: auto;
    padding: 22px;
    border-radius: 20px;
  }

  .integrated-card::before {
    display: none;
  }

  .integrated-card::after {
    width: 90px;
    height: 90px;
    right: -34px;
    top: -34px;
  }

  .integrated-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    font-size: 14px;
    margin-bottom: 18px;
  }

  .integrated-card h2 {
    font-size: 21px;
  }

  .integrated-card p {
    font-size: 14px;
    line-height: 1.65;
    margin-bottom: 18px;
  }

  .integrated-card-link {
    padding: 10px 16px;
    font-size: 12.5px;
  }
}

@media (max-width: 480px) {
  .integrated-hero {
    padding: 34px 0 22px;
  }

  .integrated-header h1 {
    font-size: 29px;
  }

  .integrated-header p {
    font-size: 14.5px;
  }

  .integrated-card {
    padding: 20px;
  }

  .integrated-card h2 {
    font-size: 20px;
  }

  .integrated-card-link {
    width: 100%;
  }
}


@media (max-width: 600px) {
  .product-feature-list li {
    font-size: 14.5px;
    line-height: 1.75;
  }

  .product-color-list span {
    font-size: 13px;
    padding: 7px 12px;
  }
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .product-detail-hero {
    padding: 48px 0 54px;
  }

  .product-detail-hero-container {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .product-detail-image-box {
    max-width: 520px;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .product-spec-section {
    padding: 42px 0 24px;
  }

  .product-table-card {
    padding: 18px;
    border-radius: 20px;
  }

  .product-description-card {
    padding: 26px 24px;
    border-radius: 20px;
  }

  .product-description-card p {
    font-size: 15px;
    line-height: 1.8;
  }
}

@media (max-width: 600px) {
  .product-detail-hero {
    padding: 42px 0 46px;
  }

  .product-detail-text h1 {
    font-size: 30px;
  }

  .product-detail-text p {
    font-size: 15px;
    line-height: 1.7;
  }

  .product-detail-image-box {
    padding: 20px;
    border-radius: 20px;
  }

  .product-spec-table {
    min-width: 0;
    border-collapse: separate;
    border-spacing: 0 12px;
  }

  .product-spec-table thead {
    display: none;
  }

  .product-spec-table,
  .product-spec-table tbody,
  .product-spec-table tr,
  .product-spec-table td {
    display: block;
    width: 100%;
  }

  .product-spec-table tr {
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
  }

  .product-spec-table td {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 13px 14px;
    border: none;
    border-bottom: 1px solid #e5e7eb;
    font-size: 14px;
  }

  .product-spec-table td:last-child {
    border-bottom: none;
  }

  .product-spec-table td::before {
    content: attr(data-label);
    color: #233540;
    font-weight: 800;
    max-width: 58%;
  }

  .product-description-section {
    padding: 24px 0 54px;
  }

  .product-description-card {
    padding: 22px 20px;
  }
}

/* MOBİL / TABLET */
@media (max-width: 900px) {
  .nav-products-dropdown {
    width: 100%;
    display: block;
  }

  .nav-products-top {
    width: 100%;
    justify-content: space-between;
  }

  .nav-products-top > a {
    flex: 1;
    font-size: 16px;
    height: auto;
  }

  .nav-products-trigger {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }

  .nav-products-dropdown.open .nav-products-trigger {
    transform: rotate(180deg);
  }

  .nav-products-panel {
    position: static;
    display: none;
    margin-top: 10px;
    width: 100%;
  }

  .nav-products-panel::before {
    display: none;
  }

  .nav-products-dropdown.open .nav-products-panel {
    display: block;
  }

  .products-mega-list {
    width: 100%;
    padding: 8px 14px;
    border-radius: 10px;
  }

  .products-mega-list > li > a,
  .mega-parent-btn {
    min-height: 42px;
    font-size: 14px;
  }

  .has-subpanel::after {
    display: none;
  }

  .product-subpanel {
    position: static;
    width: 100%;
    display: none;
    margin: 6px 0 10px;
    padding: 8px 14px;
    box-shadow: none;
    border-radius: 8px;
    background-color: #1d2f38;
  }

  .has-subpanel.active > .product-subpanel {
    display: block;
  }

  .product-subpanel a {
    min-height: 38px;
    font-size: 13.5px;
  }
}
/* PRODUCTS RESPONSIVE */
@media (max-width: 992px) {
  .product-menu-layout {
    grid-template-columns: 320px minmax(0, 1fr);
    gap: 18px;
  }

  .product-category-label {
    font-size: 15px;
  }

  .product-panel h2 {
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .products-hero-section {
    padding: 42px 0 34px;
  }

  .products-menu-section {
    padding: 36px 0 58px;
  }

  .product-menu-layout {
    grid-template-columns: 1fr;
  }

  .product-category-list,
  .product-panel-list {
    border-radius: 12px;
  }

  .product-panel-list {
    min-height: auto;
    padding: 20px;
  }

  .product-category-label {
    min-height: 48px;
    font-size: 15px;
  }

  .product-panel h2 {
    font-size: 19px;
  }

  .product-submenu-list a {
    font-size: 15px;
    padding: 13px 0;
  }
}

@media (max-width: 480px) {
  .products-page-header h1 {
    font-size: 32px;
  }

  .products-page-header p {
    font-size: 14.5px;
  }

  .product-category-list {
    padding: 10px 14px;
  }

  .product-panel-list {
    padding: 18px 16px;
  }

  .product-category-label {
    font-size: 14.5px;
  }
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .references-page-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .references-page-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .reference-link-card {
    height: 190px;
    border-radius: 14px;
  }

  .reference-card-overlay h3 {
    font-size: 17px;
  }
}

@media (max-width: 480px) {
  .references-page-grid {
    grid-template-columns: 1fr;
  }

  .reference-link-card {
    height: 210px;
  }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .project-kalite-text {
    padding: 20px 22px;
    font-size: 14.5px;
    line-height: 1.75;
    border-radius: 16px;
    margin: 16px 0 24px;
  }

  .project-kalite-text + h3 {
    font-size: 20px;
    margin: 22px 0 24px;
  }
}

@media (max-width: 480px) {
  .project-kalite-text {
    padding: 18px 18px;
    font-size: 14px;
    line-height: 1.7;
  }

  .project-kalite-text + h3 {
    font-size: 18px;
  }
}

/* RESPONSIVE - TABLET */
@media (max-width: 1100px) {
  .header-container {
    gap: 18px;
  }

  .main-nav {
    gap: 18px;
  }

  .main-nav a {
    font-size: 14px;
  }

  .whatsapp-btn {
    padding: 9px 14px;
    font-size: 13px;
    margin-left: 5px;
  }

  .hero-container {
    gap: 30px;
  }

  .hero-card {
    width: 290px;
    padding: 24px;
  }

  .references-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .footer-main {
    gap: 30px;
  }

  .footer-brand img {
    width: 260px;
  }

  .footer-partner-list {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    column-gap: 22px;
    row-gap: 16px;
  }

  .footer-partner-list img {
    height: 48px;
  }

  .project-gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 992px) {
  .info-tabs-section {
    padding: 45px 0 55px;
  }

  .info-tabs-wrapper {
    padding: 28px 24px 30px;
    border-radius: 20px;
  }

  .info-tab-btn {
    padding: 12px 18px;
    font-size: 14px;
  }

  .info-tab-panel h3 {
    font-size: 22px;
    margin-bottom: 16px;
  }

  .info-tab-panel p {
    font-size: 16px;
    line-height: 1.8;
  }
}

/* RESPONSIVE - SMALL TABLET / LARGE PHONE */
@media (max-width: 900px) {
  .site-header {
    padding: 8px 0;
  }

  .header-container {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: nowrap;
  }

  .logo {
    align-items: flex-start;
  }

  .logo img {
    height: 48px;
  }

  .menu-toggle {
    display: flex;
    order: 4;
  }

  .main-nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: min(82vw, 340px);
    height: 100vh;
    background-color: #ffffff;
    border-right: 1px solid #e5e7eb;
    box-shadow: 10px 0 30px rgba(0, 0, 0, 0.12);
    padding: 86px 24px 24px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 20px;
    z-index: 1500;
    transition: left 0.3s ease;
    overflow-y: auto;
  }

  .main-nav.active {
    left: 0;
  }

  .main-nav a {
    height: auto;
    font-size: 16px;
    width: 100%;
    padding: 6px 0;
  }

  .main-nav a::after {
    bottom: 0;
  }

  .header-right {
    margin-left: auto;
    gap: 8px;
    flex-wrap: nowrap;
    justify-content: flex-end;
  }

  .whatsapp-btn {
    padding: 8px 12px;
    min-height: 38px;
    font-size: 12px;
    margin-left: 0;
  }

  .whatsapp-icon {
    width: 22px;
    height: 22px;
  }

  .lang-current-code {
    font-size: 13px;
  }

  .language-menu {
    left: auto;
    right: 0;
  }

  .hero,
  .hero-slider,
  .hero-slide {
    min-height: auto;
  }

  .hero-container,
  .hero-slide-content {
    min-height: 520px;
    padding-top: 60px;
    padding-bottom: 90px;
  }

  .hero-container {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 24px;
  }

  .hero-text {
    max-width: 100%;
  }

  .hero-card {
    width: 100%;
    max-width: 520px;
  }

  .references-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-header h2,
  .section-header p {
    font-size: 18px;
    font-weight: 600;
  }

  .promo-grid {
    grid-template-columns: 1fr;
  }

  .promo-card {
    height: 205px;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-brand img {
    width: 245px;
    margin-left: -16px;
  }

  .footer-brand p {
    max-width: 620px;
  }

  .footer-partner-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 24px;
    row-gap: 18px;
  }

  .footer-partner-list img {
    height: 42px;
  }

  .project-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .project-detail-text {
    font-size: 16px;
  }
}

/* RESPONSIVE - MOBILE */
@media (max-width: 768px) {
  .info-tabs-section {
    padding: 38px 0 48px;
  }

  .info-tabs-wrapper {
    padding: 22px 18px 24px;
    border-radius: 18px;
  }

  .info-tabs-header {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    margin-bottom: 22px;
    padding-bottom: 14px;
  }

  .info-tab-btn {
    width: 100%;
    border-radius: 12px;
    text-align: center;
    font-size: 14px;
    padding: 13px 16px;
  }

  .info-tab-panel h3 {
    font-size: 20px;
    line-height: 1.4;
    margin-bottom: 14px;
  }

  .info-tab-panel p {
    font-size: 15px;
    line-height: 1.75;
  }

  .info-tab-intro {
    font-size: 15px !important;
    margin-bottom: 14px;
  }

  .lightbox-image {
    max-width: 92vw;
    max-height: 72vh;
  }
}

/* RESPONSIVE - PHONE */
@media (max-width: 600px) {
  .container {
    width: 90%;
  }

  .logo img {
    height: 42px;
  }

  .header-container {
    gap: 8px;
  }

  .header-right {
    gap: 6px;
  }

  .language-current {
    gap: 4px;
  }

  .lang-icon-img {
    width: 17px;
    height: 17px;
  }

  .whatsapp-btn {
    width: 38px;
    height: 38px;
    min-height: 38px;
    padding: 0;
    border-radius: 50%;
  }

  .whatsapp-btn span {
    display: none;
  }

  .whatsapp-icon {
    width: 24px;
    height: 24px;
  }

  .menu-toggle {
    width: 38px;
    height: 38px;
  }

  .hero-container,
  .hero-slide-content {
    min-height: 500px;
    padding-top: 48px;
    padding-bottom: 86px;
  }

  .hero-tag {
    font-size: 11px;
    margin-bottom: 12px;
  }

  .hero-text h1,
  .hero-slide-content h2 {
    font-size: 30px;
  }

  .hero-description,
  .hero-slide-content p {
    font-size: 15.5px;
    line-height: 1.55;
  }

  .hero-buttons {
    width: 100%;
    gap: 10px;
  }

  .primary-btn,
  .secondary-btn {
    width: 100%;
    padding: 12px 18px;
    font-size: 14px;
  }

  .hero-card {
    padding: 22px;
    border-radius: 18px;
  }

  .hero-card h3 {
    font-size: 18px;
  }

  .hero-card li {
    font-size: 14px;
  }

  .hero-dots {
    bottom: 22px;
    gap: 8px;
  }

  .dot {
    width: 11px;
    height: 11px;
  }

  .references-section {
    padding: 36px 0;
  }

  .references-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .reference-card img {
    aspect-ratio: 1 / 1;
    height: auto;
  }

  .reference-card::before {
    aspect-ratio: 1 / 1;
    height: auto;
  }

  .reference-card::after {
    top: 40%;
  }

  .reference-card h3 {
    font-size: 13px;
    padding: 9px 10px 11px;
  }

  .section-header {
    margin-bottom: 18px;
  }

  .section-header h2,
  .section-header p {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.2px;
  }

  .promo-section {
    padding: 24px 0 34px;
  }

  .promo-grid {
    gap: 14px;
  }

  .promo-card {
    height: 180px;
    border-radius: 15px;
  }

  .promo-content {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }

  .promo-content h3 {
    font-size: 18px;
  }

  .promo-badge {
    font-size: 11px;
    padding: 5px 10px;
  }

  .site-footer {
    padding: 32px 0 16px;
  }

  .footer-container {
    gap: 18px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-brand img {
    width: 220px;
    margin-left: -12px;
    margin-bottom: 8px;
  }

  .footer-brand p {
    font-size: 14px;
    line-height: 1.55;
  }

  .footer-links h4,
  .footer-contact h4 {
    font-size: 15px;
    margin-bottom: 12px;
  }

  .footer-links a,
  .footer-contact p {
    font-size: 13.5px;
  }

  .footer-partners {
    padding-top: 14px;
  }

  .footer-partners > span {
    margin-bottom: 10px;
  }

  .footer-partner-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 18px;
    row-gap: 16px;
  }

  .footer-partner-list img {
    height: 36px;
  }

  .footer-bottom {
    padding-top: 11px;
  }

  .footer-bottom p {
    font-size: 12.5px;
  }

  .project-detail-page {
    padding: 24px 0 48px;
  }

  .project-detail-header {
    margin-bottom: 32px;
  }

  .project-detail-header h1 {
    font-size: 26px;
  }

  .project-detail-text {
    font-size: 15.5px;
    line-height: 1.7;
  }

  .project-subtitle {
    font-size: 21px;
  }

  .project-gallery {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .project-gallery-item img {
    height: 220px;
  }

  .lightbox {
    padding: 18px;
  }

  .lightbox-close {
    top: 14px;
    right: 18px;
    font-size: 38px;
  }

  .lightbox-nav {
    width: 42px;
    height: 42px;
    font-size: 28px;
  }

  .lightbox-prev {
    left: 10px;
  }

  .lightbox-next {
    right: 10px;
  }

}

/* RESPONSIVE - VERY SMALL PHONE */
@media (max-width: 380px) {
  .container {
    width: 92%;
  }

  .logo img {
    height: 38px;
  }

  .hero-text h1,
  .hero-slide-content h2 {
    font-size: 27px;
  }

  .hero-description,
  .hero-slide-content p {
    font-size: 15px;
  }

  .main-nav {
    width: 86vw;
  }

  .references-grid {
    grid-template-columns: 1fr;
  }

  .promo-card {
    height: 170px;
  }

  .promo-content h3 {
    font-size: 17px;
  }

  .footer-brand img {
    width: 205px;
  }

  .footer-partner-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 14px;
    row-gap: 14px;
  }

  .footer-partner-list img {
    height: 32px;
  }
}

/* CORPORATE RESPONSIVE */
@media (max-width: 1100px) {
  .corporate-intro-card {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    padding: 28px;
  }

  .corporate-image-box img {
    height: 330px;
  }

  .corporate-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .corporate-hero {
    padding: 58px 0 62px;
  }

  .corporate-content-section {
    padding: 54px 0 62px;
  }

  .corporate-intro-card {
    grid-template-columns: 1fr;
  }

  .corporate-image-box img {
    height: 340px;
  }

  .corporate-text-box {
    padding-right: 0;
  }
}

@media (max-width: 600px) {
  .corporate-hero {
    padding: 44px 0 48px;
  }

  .corporate-content-section {
    padding: 38px 0 48px;
  }

  .corporate-intro-card {
    padding: 18px;
    border-radius: 20px;
    gap: 24px;
  }

  .corporate-image-box {
    border-radius: 16px;
  }

  .corporate-image-box img {
    height: 240px;
  }

  .corporate-text-box h2,
  .corporate-detail-card h2 {
    font-size: 22px;
  }

  .corporate-text-box p,
  .corporate-detail-card p {
    font-size: 14.5px;
    line-height: 1.75;
  }

  .corporate-stats {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .corporate-stat-item {
    min-height: auto;
    padding: 18px;
  }

  .corporate-stat-item strong {
    font-size: 25px;
  }

  .corporate-detail-card {
    padding: 24px 20px;
    border-radius: 18px;
  }
}

@media (max-width: 380px) {
  .corporate-image-box img {
    height: 210px;
  }
  
}

/* =========================================================
   RESPONSIVE FIX - FOOTER + MOBILE PRODUCTS MENU
   Bu bölüm sadece footer ve ürünler açılır menüsü içindir.
   Diğer yapıları bozmamak için dosyanın en sonunda override olarak durmalıdır.
========================================================= */

/* Mobil menü içinde taşmayı genel olarak engeller */
@media (max-width: 900px) {
  .main-nav {
    width: min(88vw, 330px);
    max-width: 100vw;
    padding: 82px 16px 22px;
    gap: 14px;
    overflow-x: hidden;
  }

  .main-nav > a,
  .nav-products-dropdown,
  .nav-products-top,
  .nav-products-top > a,
  .nav-products-panel,
  .products-mega-list,
  .products-mega-list > li,
  .products-mega-list > li > a,
  .mega-parent-btn,
  .product-subpanel,
  .product-subpanel a {
    max-width: 100%;
    box-sizing: border-box;
  }

  .nav-products-dropdown {
    width: 100%;
    min-width: 0;
    display: block;
  }

  .nav-products-top {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
  }

  .nav-products-top > a {
    flex: 1 1 auto;
    min-width: 0;
    height: auto;
    padding: 6px 0;
    font-size: 15px;
    line-height: 1.25;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .nav-products-trigger {
    width: 28px;
    height: 28px;
    flex: 0 0 28px;
    font-size: 12px;
  }

  .nav-products-panel {
    position: static;
    left: auto;
    top: auto;
    width: 100%;
    min-width: 0;
    margin-top: 6px;
    overflow: visible;
  }

  .nav-products-panel::before {
    display: none;
  }

  .products-mega-list {
    width: 100%;
    min-width: 0;
    padding: 6px 8px;
    border-radius: 8px;
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.16);
    overflow: hidden;
  }

  .products-mega-list > li > a,
  .mega-parent-btn {
    min-height: 34px;
    height: auto;
    gap: 6px;
    padding: 7px 0;
    font-size: 12px;
    line-height: 1.25;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .mega-arrow {
    font-size: 14px;
    flex-shrink: 0;
  }

  .has-subpanel::after {
    display: none;
  }

  .product-subpanel {
    position: static;
    left: auto;
    top: auto;
    width: 100%;
    min-width: 0;
    margin: 4px 0 8px;
    padding: 6px 8px;
    border-radius: 7px;
    box-shadow: none;
    background-color: #1d2f38;
    overflow: hidden;
  }

  .has-subpanel.active > .product-subpanel,
  .has-subpanel:hover > .product-subpanel,
  .has-subpanel:focus-within > .product-subpanel {
    display: block;
  }

  .product-subpanel a {
    min-height: 32px;
    height: auto;
    padding: 7px 0;
    font-size: 11.5px;
    line-height: 1.25;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: normal;
  }

  /* Ürünler sayfasındaki kategori/panel yapısı */
  .product-menu-layout {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .product-category-list,
  .product-panel-list {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .product-category-list {
    padding: 10px 12px;
  }

  .product-category-label {
    min-height: 44px;
    gap: 8px;
    font-size: 14px;
    line-height: 1.25;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .product-arrow {
    font-size: 20px;
    flex-shrink: 0;
  }

  .product-panel-list {
    padding: 18px 16px;
  }

  .product-panel h2 {
    font-size: 18px;
    line-height: 1.3;
  }

  .product-panel p,
  .product-submenu-list a {
    font-size: 14px;
    line-height: 1.45;
    overflow-wrap: anywhere;
  }
}

/* Küçük telefonlarda ürünler menüsünü daha kompakt yapar */
@media (max-width: 480px) {
  .main-nav {
    width: min(90vw, 310px);
    padding-left: 14px;
    padding-right: 14px;
    gap: 12px;
  }

  .main-nav a {
    font-size: 14px;
  }

  .nav-products-top > a {
    font-size: 14px;
  }

  .products-mega-list {
    padding: 5px 7px;
  }

  .products-mega-list > li > a,
  .mega-parent-btn {
    min-height: 31px;
    padding: 6px 0;
    font-size: 11px;
    line-height: 1.22;
  }

  .product-subpanel {
    padding: 5px 7px;
  }

  .product-subpanel a {
    min-height: 30px;
    padding: 6px 0;
    font-size: 10.8px;
    line-height: 1.22;
  }

  .mega-arrow {
    font-size: 13px;
  }

  .products-hero-section {
    padding: 32px 0 28px;
  }

  .products-page-header h1 {
    font-size: 26px;
    line-height: 1.15;
  }

  .products-page-header p {
    font-size: 14px;
    line-height: 1.6;
  }

  .products-menu-section {
    padding: 30px 0 48px;
  }

  .product-category-label {
    min-height: 40px;
    font-size: 13px;
  }

  .product-panel-list {
    padding: 15px 13px;
  }

  .product-panel h2 {
    font-size: 16px;
  }

  .product-panel p,
  .product-submenu-list a {
    font-size: 13px;
  }
}

/* Çok dar ekranlarda ilk görseldeki taşmayı engeller */
@media (max-width: 380px) {
  .main-nav {
    width: 90vw;
    padding-left: 12px;
    padding-right: 12px;
  }

  .products-mega-list > li > a,
  .mega-parent-btn {
    font-size: 10.4px;
    min-height: 29px;
  }

  .product-subpanel a {
    font-size: 10px;
    min-height: 28px;
  }

  .nav-products-trigger {
    width: 24px;
    height: 24px;
    flex-basis: 24px;
  }
}

/* FOOTER RESPONSIVE FIX */
@media (max-width: 900px) {
  .site-footer {
    overflow-x: hidden;
  }

  .footer-container,
  .footer-main,
  .footer-brand,
  .footer-links,
  .footer-contact,
  .footer-partners,
  .footer-bottom {
    max-width: 100%;
    box-sizing: border-box;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-brand img {
    width: min(235px, 78vw);
    max-width: 100%;
    margin-left: 0;
  }

  .footer-brand p,
  .footer-contact p,
  .footer-contact a,
  .footer-links a,
  .footer-bottom p {
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .footer-partner-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
  }

  .footer-partner-list img {
    height: 38px;
    max-width: 100px;
  }
}

@media (max-width: 600px) {
  .site-footer {
    padding: 26px 0 14px;
  }

  .footer-container {
    gap: 16px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer-brand img {
    width: min(210px, 76vw);
    margin-left: 0;
    margin-bottom: 8px;
  }

  .footer-brand p {
    max-width: 100%;
    font-size: 13px;
    line-height: 1.55;
  }

  .footer-links h4,
  .footer-contact h4,
  .footer-partners > span {
    font-size: 14px;
    margin-bottom: 10px;
  }

  .footer-links a {
    font-size: 12.5px;
    margin-bottom: 7px;
    line-height: 1.35;
  }

  .footer-contact p {
    font-size: 12.5px;
    line-height: 1.6;
    margin-bottom: 9px;
  }

  .footer-partners {
    padding-top: 14px;
  }

  .footer-partner-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 14px;
    row-gap: 13px;
  }

  .footer-partner-list img {
    height: 30px;
    max-width: 86px;
  }

  .footer-bottom {
    padding-top: 10px;
  }

  .footer-bottom p {
    font-size: 11.5px;
    line-height: 1.5;
  }
}

@media (max-width: 380px) {
  .site-footer {
    padding: 24px 0 13px;
  }

  .footer-brand img {
    width: min(185px, 74vw);
  }

  .footer-brand p,
  .footer-links a,
  .footer-contact p {
    font-size: 11.8px;
  }

  .footer-partner-list {
    column-gap: 10px;
    row-gap: 12px;
  }

  .footer-partner-list img {
    height: 26px;
    max-width: 76px;
  }

  .footer-bottom p {
    font-size: 10.8px;
  }
}

