/* ============================================================
   Level Türkiye - Main Stylesheet
   Design: Industrial/Corporate | Navy + Red + White
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;500;600;700;800&family=Nunito+Sans:wght@300;400;600;700&display=swap');

/* ---- CSS VARIABLES ---- */
:root {
  --navy: #0D1B35;
  --navy-light: #162850;
  --red: #C8102E;
  --red-dark: #a00d24;
  --gold: #E8A020;
  --white: #ffffff;
  --gray-50: #F8F9FB;
  --gray-100: #F0F2F5;
  --gray-200: #E2E6EA;
  --gray-400: #9AA3AD;
  --gray-600: #6B7280;
  --gray-800: #2D3748;
  --text: #1A202C;
  --font-head: 'Barlow Condensed', sans-serif;
  --font-body: 'Nunito Sans', sans-serif;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, .08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, .12);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, .18);
  --radius: 6px;
  --radius-lg: 12px;
  --transition: .3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

input,
textarea,
select,
button {
  font-family: inherit;
}

/* ---- TYPOGRAPHY ---- */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.15;
  color: var(--navy);
  letter-spacing: .02em;
}

h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
}

h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}

h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
}

h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 1rem;
  color: var(--gray-600);
}

/* ---- LAYOUT ---- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 90px 0;
}

.section-sm {
  padding: 60px 0;
}

.section-dark {
  background: var(--navy);
}

.section-gray {
  background: var(--gray-50);
}

/* ---- SECTION HEADINGS ---- */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}

.section-label::before {
  content: '';
  display: block;
  width: 30px;
  height: 2px;
  background: var(--red);
}

.section-title {
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray-600);
  max-width: 580px;
}

.text-center .section-subtitle {
  margin: 0 auto;
}

.text-center {
  text-align: center;
}

.section-header {
  margin-bottom: 56px;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}

.btn-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200, 16, 46, .3);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
}

.btn-outline-dark {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}

.btn-outline-dark:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-sm {
  padding: 9px 18px;
  font-size: .85rem;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
  padding: 0;
}

.navbar.scrolled {
  background: var(--navy);
  box-shadow: var(--shadow-md);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  padding: 0 20px;
  max-width: 1260px;
  margin: 0 auto;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 2;
}

.navbar-logo .logo-icon {
  width: 44px;
  height: 44px;
  background: var(--red);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}

.navbar-logo .logo-icon svg {
  width: 26px;
  height: 26px;
  fill: white;
}

.navbar-logo .logo-text {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: .06em;
}

.navbar-logo .logo-text span {
  color: var(--red);
}

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

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 10px 14px;
  color: rgba(255, 255, 255, .85);
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: color var(--transition);
  border-radius: var(--radius);
}

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

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--red);
  border-radius: 2px;
}

/* Dropdown */
.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all .25s ease;
  border-top: 3px solid var(--red);
}

.nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: block;
  padding: 10px 20px;
  color: var(--gray-800);
  font-size: .95rem;
  transition: all .2s;
}

.dropdown-item:hover {
  background: var(--gray-50);
  color: var(--red);
  padding-left: 26px;
}

.navbar-cta {
  margin-left: 16px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: all .3s;
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============================================================
   HERO SLIDER
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  max-height: 900px;
  overflow: hidden;
}

.hero-slides {
  height: 100%;
}

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

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

.hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition: transform 6s ease;
}

.hero-slide.active .hero-slide-bg {
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13, 27, 53, .88) 0%, rgba(13, 27, 53, .5) 60%, transparent 100%);
}

.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  padding: 0 20px;
}

.hero-content .container {
  width: 100%;
}

.hero-text {
  max-width: 640px;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-family: var(--font-head);
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  margin-bottom: 16px;
  opacity: 0;
  transform: translateY(20px);
  transition: all .6s ease .2s;
}

.hero-slide.active .hero-label {
  opacity: 1;
  transform: translateY(0);
}

.hero-label::before {
  content: '';
  width: 32px;
  height: 2px;
  background: var(--gold);
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(30px);
  transition: all .7s ease .4s;
}

.hero-slide.active .hero-title {
  opacity: 1;
  transform: translateY(0);
}

.hero-title span {
  color: var(--red);
}

.hero-desc {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, .8);
  margin-bottom: 36px;
  opacity: 0;
  transform: translateY(20px);
  transition: all .6s ease .6s;
}

.hero-slide.active .hero-desc {
  opacity: 1;
  transform: translateY(0);
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  transition: all .6s ease .8s;
}

.hero-slide.active .hero-btns {
  opacity: 1;
  transform: translateY(0);
}

/* Hero Controls */
.hero-controls {
  position: absolute;
  bottom: 36px;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  z-index: 10;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .4);
  cursor: pointer;
  transition: all .3s;
  border: none;
  padding: 0;
}

.hero-dot.active {
  background: var(--red);
  width: 28px;
  border-radius: 5px;
}

.hero-arrows {
  position: absolute;
  bottom: 28px;
  right: 40px;
  display: flex;
  gap: 8px;
}

.hero-arrow {
  width: 42px;
  height: 42px;
  border: 1.5px solid rgba(255, 255, 255, .4);
  border-radius: var(--radius);
  background: transparent;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s;
  font-size: 1.1rem;
}

.hero-arrow:hover {
  background: var(--red);
  border-color: var(--red);
}

/* Stats bar */
.hero-stats {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, .07);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.hero-stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.hero-stat {
  padding: 20px 28px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, .1);
}

.hero-stat:last-child {
  border-right: none;
}

.hero-stat-number {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}

.hero-stat-number span {
  color: var(--red);
}

.hero-stat-label {
  font-size: .8rem;
  color: rgba(255, 255, 255, .65);
  letter-spacing: .1em;
  text-transform: uppercase;
}

/* ============================================================
   INTRO SECTION
   ============================================================ */
.intro-section {
  padding: 90px 0;
  background: var(--white);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.intro-img-wrap {
  position: relative;
}

.intro-img-main {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  height: 480px;
}

.intro-img-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--red);
  color: white;
  padding: 24px 28px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.intro-img-badge .num {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
}

.intro-img-badge .lbl {
  font-size: .75rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  opacity: .85;
}

.intro-text {
  padding-right: 20px;
}

.intro-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}

.intro-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: var(--gray-50);
  border-radius: var(--radius);
  border-left: 3px solid var(--red);
}

.intro-feature-icon {
  width: 38px;
  height: 38px;
  background: var(--red);
  color: white;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: .9rem;
}

.intro-feature-text h5 {
  font-family: var(--font-head);
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 2px;
}

.intro-feature-text p {
  font-size: .82rem;
  margin: 0;
  color: var(--gray-600);
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 1.5rem;
  color: white;
  transition: all var(--transition);
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--navy);
}

.service-card p {
  font-size: .9rem;
  margin-bottom: 20px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--red);
  font-family: var(--font-head);
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.service-link i {
  transition: transform .3s;
  font-size: .8rem;
}

.service-card:hover .service-link i {
  transform: translateX(4px);
}

/* ============================================================
   PRODUCTS SECTION
   ============================================================ */
.products-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  justify-content: center;
}

.tab-btn {
  padding: 9px 22px;
  border-radius: 30px;
  border: 1.5px solid var(--gray-200);
  background: transparent;
  color: var(--gray-600);
  font-family: var(--font-head);
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .06em;
  cursor: pointer;
  transition: all .25s;
}

.tab-btn:hover,
.tab-btn.active {
  background: var(--navy);
  color: white;
  border-color: var(--navy);
}

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

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.product-card-img {
  height: 200px;
  overflow: hidden;
  background: var(--gray-100);
  position: relative;
}

.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.product-card:hover .product-card-img img {
  transform: scale(1.06);
}

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--red);
  color: white;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.product-card-body {
  padding: 20px;
}

.product-cat {
  font-size: .75rem;
  color: var(--red);
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.product-card-body h4 {
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 8px;
}

.product-card-body p {
  font-size: .85rem;
  margin-bottom: 16px;
  line-height: 1.5;
}

.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  border-top: 1px solid var(--gray-100);
  background: var(--gray-50);
}

.product-detail-link {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--navy);
  font-size: .85rem;
  font-weight: 700;
  transition: color .25s;
}

.product-detail-link:hover {
  color: var(--red);
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: var(--navy);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 300px;
  height: 300px;
  background: var(--red);
  opacity: .08;
  border-radius: 50%;
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -40px;
  width: 220px;
  height: 220px;
  background: var(--gold);
  opacity: .06;
  border-radius: 50%;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 1;
}

.cta-text h2 {
  color: var(--white);
}

.cta-text p {
  color: rgba(255, 255, 255, .65);
  margin-bottom: 0;
}

.cta-btns {
  display: flex;
  gap: 14px;
  flex-shrink: 0;
}

/* ============================================================
   BLOG SECTION
   ============================================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
}

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

.blog-card-img {
  height: 210px;
  overflow: hidden;
  background: var(--gray-100);
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s;
}

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

.blog-card-body {
  padding: 24px;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.blog-cat {
  background: rgba(200, 16, 46, .1);
  color: var(--red);
  padding: 2px 10px;
  border-radius: 20px;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.blog-date {
  font-size: .8rem;
  color: var(--gray-400);
  display: flex;
  align-items: center;
  gap: 4px;
}

.blog-card-body h4 {
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.3;
}

.blog-card-body p {
  font-size: .88rem;
  margin-bottom: 16px;
}

.read-more {
  color: var(--red);
  font-weight: 700;
  font-size: .88rem;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: gap .25s;
}

.read-more:hover {
  gap: 8px;
}

/* ============================================================
   CONTACT PREVIEW
   ============================================================ */
.contact-preview-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}

.contact-info-items {
  margin-top: 32px;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
  align-items: flex-start;
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  background: var(--red);
  color: white;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}

.contact-info-text h5 {
  font-family: var(--font-head);
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 4px;
}

.contact-info-text p {
  font-size: .9rem;
  margin: 0;
}

.contact-info-text a {
  color: var(--gray-600);
  transition: color .25s;
}

.contact-info-text a:hover {
  color: var(--red);
}

/* Contact Form */
.contact-form-wrap {
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.contact-form-wrap h3 {
  margin-bottom: 24px;
  font-size: 1.6rem;
}

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

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

.form-group label {
  display: block;
  font-size: .85rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
  letter-spacing: .04em;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  background: var(--white);
  font-size: .95rem;
  color: var(--text);
  transition: border-color .25s, box-shadow .25s;
  outline: none;
}

.form-control:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(13, 27, 53, .1);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--navy);
  color: rgba(255, 255, 255, .7);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 50px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.footer-brand-logo .logo-icon {
  width: 40px;
  height: 40px;
  background: var(--red);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-brand-logo .logo-icon svg {
  width: 22px;
  fill: white;
}

.footer-brand-logo .logo-text {
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 800;
  color: white;
  letter-spacing: .06em;
}

.footer-about-text {
  font-size: .88rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

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

.footer-social a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .6);
  font-size: .9rem;
  transition: all .25s;
}

.footer-social a:hover {
  background: var(--red);
  border-color: var(--red);
  color: white;
}

.footer-col h4 {
  color: var(--white);
  font-size: 1rem;
  font-family: var(--font-head);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--red);
  display: inline-block;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, .6);
  font-size: .9rem;
  transition: all .25s;
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-links a::before {
  content: '›';
  color: var(--red);
  font-size: 1.1rem;
}

.footer-links a:hover {
  color: white;
  padding-left: 4px;
}

.footer-contact-items li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 14px;
  font-size: .88rem;
}

.footer-contact-items li i {
  color: var(--red);
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-contact-items a {
  color: rgba(255, 255, 255, .6);
  transition: color .25s;
}

.footer-contact-items a:hover {
  color: white;
}

.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom p {
  font-size: .83rem;
  margin: 0;
}

.footer-bottom a {
  color: var(--red);
}

/* ============================================================
   PAGE HERO
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 120px 0 60px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 40%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 400"><defs><pattern id="g" x="0" y="0" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1.5" fill="rgba(255,255,255,.06)"/></pattern></defs><rect width="400" height="400" fill="url(%23g)"/></svg>');
  opacity: .5;
}

.page-hero h1 {
  color: white;
  margin-bottom: 12px;
}

.page-hero .breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .88rem;
  color: rgba(255, 255, 255, .55);
}

.page-hero .breadcrumb a {
  color: rgba(255, 255, 255, .7);
  transition: color .25s;
}

.page-hero .breadcrumb a:hover {
  color: white;
}

.page-hero .breadcrumb span {
  color: var(--red);
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 70px;
  align-items: center;
}

.about-img-wrap {
  position: relative;
}

.about-img-main {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.about-img-small {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 220px;
  height: 180px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 5px solid white;
  box-shadow: var(--shadow-lg);
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 36px;
}

.value-card {
  padding: 24px;
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  border-top: 3px solid var(--red);
}

.value-card h4 {
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 8px;
}

.value-card p {
  font-size: .85rem;
  margin: 0;
}

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

.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  text-align: center;
  transition: all var(--transition);
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.team-img {
  height: 220px;
  overflow: hidden;
  background: var(--gray-100);
}

.team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-body {
  padding: 20px;
}

.team-body h4 {
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.team-body .role {
  font-size: .82rem;
  color: var(--red);
  font-weight: 700;
  letter-spacing: .08em;
}

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.services-list-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.service-detail-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  display: flex;
  transition: all var(--transition);
}

.service-detail-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.service-detail-icon {
  width: 100px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
  flex-shrink: 0;
}

.service-detail-body {
  padding: 28px;
}

.service-detail-body h3 {
  font-size: 1.35rem;
  margin-bottom: 10px;
}

.service-detail-body p {
  font-size: .9rem;
  margin-bottom: 0;
}

/* ============================================================
   PRODUCTS PAGE
   ============================================================ */
.products-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 40px;
  align-items: start;
}

.sidebar-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  overflow: hidden;
  margin-bottom: 24px;
}

.sidebar-title {
  background: var(--navy);
  color: white;
  padding: 14px 20px;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.sidebar-links li {
  border-bottom: 1px solid var(--gray-100);
}

.sidebar-links li:last-child {
  border-bottom: none;
}

.sidebar-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  font-size: .9rem;
  color: var(--gray-800);
  transition: all .25s;
}

.sidebar-links a:hover,
.sidebar-links a.active {
  background: var(--gray-50);
  color: var(--red);
  padding-left: 26px;
}

/* Product Detail */
.product-detail-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: start;
}

.product-gallery-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 420px;
  background: var(--gray-100);
}

.product-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* --- PRODUCT FEATURES --- */
.product-features-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 24px 0;
}
.product-feature-item {
  display: flex;
  align-items: center;
  gap: 16px;
}
.product-feature-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--navy);
  border-radius: 12px;
  background: var(--gray-100);
}
.product-feature-icon.is-image { padding: 6px; }
.product-feature-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.product-feature-text {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.4;
  font-weight: 500;
}

/* --- RELATED PRODUCT CARD --- */
.related-product-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--transition);
  text-align: center;
  padding: 24px 16px;
}
.related-product-card:hover {
  box-shadow: var(--shadow-md);
}
.related-product-card-img {
  height: 180px;
  margin-bottom: 20px;
}
.related-product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  margin: 0 auto;
}
.related-product-card-title {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.related-product-card-subtitle {
  font-size: 0.9rem;
  color: var(--gray-600);
  margin-bottom: 20px;
}
.related-product-card .btn-orange {
  display: inline-block;
  background-color: #F95C00;
  color: #fff;
  font-weight: 700;
  padding: 10px 0;
  border-radius: var(--radius);
  text-transform: uppercase;
  font-size: 0.9rem;
  transition: background-color 0.2s;
  width: 100%;
}
.related-product-card .btn-orange:hover {
  background-color: #d64a00;
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
}

.specs-table tr:nth-child(even) {
  background: var(--gray-50);
}

.specs-table td {
  padding: 10px 16px;
  font-size: .9rem;
  border: 1px solid var(--gray-200);
}

.specs-table td:first-child {
  font-weight: 700;
  color: var(--navy);
  width: 40%;
  background: var(--gray-50);
}

/* ============================================================
   BLOG PAGE
   ============================================================ */
.blog-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 50px;
  align-items: start;
}

.blog-post-header {
  margin-bottom: 32px;
}

.blog-post-img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  margin-bottom: 40px;
}

.blog-post-content {
  line-height: 1.85;
}

.blog-post-content h2,
.blog-post-content h3 {
  color: var(--navy);
  margin: 32px 0 16px;
}

.blog-post-content p {
  margin-bottom: 18px;
  color: var(--gray-600);
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
}

.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 420px;
  background: var(--gray-100);
  box-shadow: var(--shadow-md);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ============================================================
   ALERTS / FLASH
   ============================================================ */
.alert {
  padding: 14px 20px;
  border-radius: var(--radius);
  margin-bottom: 20px;
  font-size: .92rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.alert-success {
  background: #d1fae5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

.alert-error {
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #fca5a5;
}

.alert-info {
  background: #dbeafe;
  color: #1e40af;
  border: 1px solid #93c5fd;
}

/* ============================================================
   PAGINATION
   ============================================================ */
.pagination {
  display: flex;
  gap: 6px;
  justify-content: center;
  margin-top: 50px;
  flex-wrap: wrap;
}

.page-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  border: 1.5px solid var(--gray-200);
  color: var(--gray-600);
  font-size: .9rem;
  font-weight: 600;
  transition: all .25s;
}

.page-link:hover,
.page-link.active {
  background: var(--navy);
  color: white;
  border-color: var(--navy);
}

/* ============================================================
   ANIMATE ON SCROLL
   ============================================================ */
.aos-init {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}

.aos-init.aos-animate {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

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

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

@media (max-width: 900px) {

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

  .contact-preview-grid {
    grid-template-columns: 1fr;
  }

  .cta-inner {
    flex-direction: column;
    text-align: center;
  }

  .products-layout {
    grid-template-columns: 1fr;
  }

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

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .services-list-grid {
    grid-template-columns: 1fr;
  }

  .product-detail-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    display: none;
  }

  .intro-img-badge {
    right: 0;
    bottom: -20px;
  }

  .about-img-small {
    display: none;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 340px;
    height: 100vh;
    background: var(--navy);
    flex-direction: column;
    align-items: flex-start;
    padding: 90px 24px 40px;
    gap: 0;
    transition: right .35s ease;
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
  }

  .nav-menu.open {
    right: 0;
  }

  .nav-item {
    width: 100%;
  }

  .nav-link {
    padding: 14px 4px;
    width: 100%;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(255, 255, 255, .07);
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: rgba(255, 255, 255, .05);
    border-radius: var(--radius);
    margin: 4px 0;
    border-top: none;
  }

  .dropdown-item {
    color: rgba(255, 255, 255, .7);
  }

  .navbar-cta {
    display: none;
  }

  .nav-toggle {
    display: flex;
    background-color: #4a4b4a;
  }

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

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

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

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

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

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

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

  .section {
    padding: 60px 0;
  }

  .hero {
    min-height: 500px;
  }

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

@media (max-width: 480px) {
  .services-grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .products-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-arrows {
    display: none;
  }

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

  .btn {
    justify-content: center;
  }

  .contact-form-wrap {
    padding: 24px;
  }
}
