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

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

:root {
  --primary: #0f172a;       /* Deep slate */
  --accent-gold: #c5a880;   /* Premium gold accent */
  --accent-blue: #0071e3;   /* Apple tech blue */
  --accent-blue-hover: #005bb5;
  --black: #0b0f17;         /* Sleek charcoal black */
  --white: #ffffff;
  --grey-bg: #f8fafc;       /* Light neutral grey */
  --grey-border: #e2e8f0;
  --text-dark: #0f172a;
  --text-muted: #64748b;
  --card-radius: 16px;
  --btn-radius: 30px;
  --nav-height: 72px;
  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.05);
  --shadow-md: 0 10px 30px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 20px 40px rgba(15, 23, 42, 0.15);
}

html { scroll-behavior: smooth; }
body { 
  font-family: 'Inter', -apple-system, sans-serif; 
  color: var(--text-dark); 
  background: var(--white); 
  line-height: 1.6; 
  overflow-x: hidden; 
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  color: var(--primary);
  font-weight: 700;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; height: auto; }
button, input, textarea, select { font-family: inherit; outline: none; }
button { cursor: pointer; border: none; background: none; }

/* ===== CUSTOM SCROLLBAR ===== */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: var(--grey-bg);
}
::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

/* ===== NAVBAR ===== */
.navbar { 
  position: fixed; 
  top: 0; 
  left: 0; 
  right: 0; 
  height: var(--nav-height); 
  background: rgba(11, 15, 23, 0.95); 
  backdrop-filter: blur(20px); 
  -webkit-backdrop-filter: blur(20px); 
  z-index: 1000; 
  display: flex; 
  align-items: center; 
  padding: 0 40px; 
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: var(--transition);
}
.nav-inner { 
  max-width: 1400px; 
  width: 100%; 
  margin: 0 auto; 
  display: flex; 
  align-items: center; 
  justify-content: space-between; 
}
.nav-logo { 
  display: flex; 
  align-items: center; 
  gap: 12px; 
}
.nav-logo-text { 
  color: var(--white); 
  font-size: 20px; 
  font-weight: 800; 
  letter-spacing: 0.5px; 
  font-family: 'Outfit', sans-serif;
  line-height: 1.1;
}
.nav-logo-sub { 
  color: var(--accent-gold); 
  font-size: 9px; 
  text-transform: uppercase; 
  letter-spacing: 1.5px; 
  display: block; 
  font-weight: 600;
  margin-top: 1px;
}
.logo-svg {
  width: 32px;
  height: 32px;
}
.nav-menu { 
  display: flex; 
  align-items: center; 
  gap: 32px; 
}
.nav-menu a { 
  color: rgba(255,255,255,0.75); 
  font-size: 14px; 
  font-weight: 500; 
  transition: var(--transition); 
  position: relative; 
  padding: 6px 0;
}
.nav-menu a:hover, .nav-menu a.active { 
  color: var(--white); 
}
.nav-menu a::after { 
  content: ''; 
  position: absolute; 
  bottom: 0; 
  left: 0; 
  width: 0; 
  height: 2px; 
  background: var(--accent-gold); 
  transition: var(--transition); 
}
.nav-menu a:hover::after, .nav-menu a.active::after { 
  width: 100%; 
}
.nav-right { 
  display: flex; 
  align-items: center; 
  gap: 20px; 
}
.nav-quote-btn {
  position: relative;
  color: var(--white);
  font-size: 20px;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-quote-btn:hover {
  color: var(--accent-gold);
}
.quote-badge {
  position: absolute;
  top: -8px;
  right: -10px;
  background: var(--accent-gold);
  color: var(--black);
  font-size: 10px;
  font-weight: 800;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}
.btn-locate { 
  background: var(--accent-gold); 
  color: var(--black); 
  padding: 10px 24px; 
  border-radius: var(--btn-radius); 
  font-size: 13px; 
  font-weight: 700; 
  transition: var(--transition); 
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.btn-locate:hover { 
  background: var(--white); 
  transform: translateY(-2px); 
  box-shadow: 0 4px 15px rgba(197, 168, 128, 0.3);
}
.hamburger { 
  display: none; 
  flex-direction: column; 
  gap: 6px; 
  cursor: pointer; 
}
.hamburger span { 
  width: 26px; 
  height: 2px; 
  background: var(--white); 
  transition: var(--transition); 
  border-radius: 1px;
}

/* ===== HERO SLIDER ===== */
.hero { 
  margin: 0;
  position: relative;
  width: 100%;
  padding: 0;
  min-height: 0;
  background: #0b1018;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.hero-stage {
  position: relative;
  width: 100%;
  margin: 0 auto;
  aspect-ratio: 3 / 1;
}
.hero-slides { 
  display: flex; 
  width: 100%; 
  height: 100%;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1); 
}
.hero-slide { 
  min-width: 100%;
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  min-height: 0;
  height: 100%;
}
.hero-visual img,
.hero-img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  padding: 0;
}
.hero-dots { 
  position: absolute; 
  bottom: 14px; 
  left: 50%; 
  transform: translateX(-50%);
  display: flex; 
  gap: 10px; 
  z-index: 10; 
}
.hero-dot { 
  width: 8px; 
  height: 8px; 
  border-radius: 50%; 
  background: rgba(255,255,255,0.3); 
  cursor: pointer; 
  transition: var(--transition); 
}
.hero-dot.active { 
  background: var(--accent-gold); 
  width: 28px; 
  border-radius: 4px; 
}
.hero-arrows { 
  position: absolute; 
  top: 50%; 
  width: 100%; 
  display: flex; 
  justify-content: space-between; 
  padding: 0 10px; 
  transform: translateY(-50%); 
  z-index: 10; 
  pointer-events: none;
}
.hero-arrow { 
  pointer-events: auto;
  width: 42px; 
  height: 42px; 
  border-radius: 50%; 
  background: rgba(255,255,255,0.06); 
  backdrop-filter: blur(10px); 
  -webkit-backdrop-filter: blur(10px);
  display: flex; 
  align-items: center; 
  justify-content: center; 
  color: var(--white); 
  font-size: 18px; 
  cursor: pointer; 
  transition: var(--transition); 
  border: 1px solid rgba(255,255,255,0.05);
}
.hero-arrow:hover { 
  background: rgba(255,255,255,0.15); 
  color: var(--accent-gold);
  border-color: rgba(197, 168, 128, 0.4);
}

/* ===== SECTION COMMON ===== */
.section { 
  padding: 100px 40px; 
  max-width: 1400px; 
  margin: 0 auto; 
}
.section-title { 
  font-size: 38px; 
  font-weight: 800; 
  text-align: center; 
  margin-bottom: 16px; 
  letter-spacing: -0.5px;
}
.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 60px;
  font-size: 16px;
}
.section-title span { 
  color: var(--accent-gold); 
}
.section-grey { 
  background: var(--grey-bg); 
}

/* ===== BANNER HEADER FOR PAGES ===== */
.page-header {
  padding: 150px 40px 80px;
  background: var(--black);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, rgba(197, 168, 128, 0.08) 0%, transparent 70%);
  pointer-events: none;
}
.page-header h1 {
  font-size: clamp(32px, 5vw, 54px);
  color: var(--white);
  margin-bottom: 12px;
}
.page-header p {
  color: var(--accent-gold);
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 13px;
}

/* ===== CATEGORIES GRID ===== */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.category-card {
  background: var(--white);
  border-radius: var(--card-radius);
  padding: 40px 30px;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  text-align: center;
  border: 1px solid var(--grey-border);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.category-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(197, 168, 128, 0.3);
}
.category-icon {
  width: 80px;
  height: 80px;
  background: var(--grey-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin-bottom: 24px;
  color: var(--accent-blue);
  transition: var(--transition);
}
.category-card:hover .category-icon {
  background: var(--accent-gold);
  color: var(--black);
  transform: rotateY(180deg);
}
.category-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}
.category-card p {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 20px;
  flex-grow: 1;
}
.category-card .btn-text {
  color: var(--accent-blue);
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}
.category-card:hover .btn-text {
  color: var(--accent-gold);
}

/* ===== ABOUT OVERVIEW SUMMARY ===== */
.split-section { 
  display: flex; 
  align-items: center; 
  gap: 80px; 
  padding: 100px 40px; 
  max-width: 1400px; 
  margin: 0 auto; 
}
.split-section.reverse { flex-direction: row-reverse; }
.split-text { flex: 1.2; }
.split-text h2 { 
  font-size: 42px; 
  font-weight: 800; 
  margin-bottom: 20px; 
  line-height: 1.15; 
}
.split-text p { 
  font-size: 16px; 
  color: var(--text-muted); 
  margin-bottom: 30px; 
  line-height: 1.7; 
}
.split-visual { 
  flex: 0.8; 
  min-height: 380px; 
  border-radius: var(--card-radius); 
  overflow: hidden; 
  position: relative; 
  box-shadow: var(--shadow-lg);
}
.split-visual-inner { 
  width: 100%; 
  height: 100%; 
  display: flex; 
  flex-direction: column;
  align-items: center; 
  justify-content: center; 
  background: linear-gradient(135deg, #0f172a 0%, #020617 100%);
  padding: 40px;
  color: var(--white);
  border: 1px solid rgba(197, 168, 128, 0.2);
}
.stats-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  width: 100%;
}
.stat-item {
  text-align: center;
}
.stat-number {
  font-size: 44px;
  font-weight: 800;
  color: var(--accent-gold);
  font-family: 'Outfit', sans-serif;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 12px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  letter-spacing: 1px;
}

/* ===== PARTNER LOGO BAR ===== */
.partners-section {
  padding: 60px 40px;
  border-top: 1px solid var(--grey-border);
  border-bottom: 1px solid var(--grey-border);
  background: var(--white);
}
.partners-inner {
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
}
.partners-title {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  margin-bottom: 30px;
  font-weight: 600;
}
.partners-flex {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}
.partner-logo {
  font-family: 'Outfit', sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: #94a3b8;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  opacity: 0.65;
}
.partner-logo:hover {
  color: var(--primary);
  opacity: 1;
  transform: scale(1.08);
}
.partner-logo i {
  font-size: 26px;
}

/* ===== GENERAL BUTTONS ===== */
.btn-solid { 
  display: inline-flex; 
  align-items: center;
  gap: 10px;
  padding: 14px 36px; 
  border-radius: var(--btn-radius); 
  background: var(--accent-blue); 
  color: var(--white); 
  font-size: 15px; 
  font-weight: 600; 
  transition: var(--transition); 
  box-shadow: 0 4px 14px rgba(0, 113, 227, 0.25);
}
.btn-solid:hover { 
  background: var(--accent-blue-hover); 
  transform: translateY(-2px); 
  box-shadow: 0 8px 25px rgba(0, 113, 227, 0.4); 
}
.btn-solid.btn-gold {
  background: var(--accent-gold);
  color: var(--black);
  box-shadow: 0 4px 14px rgba(197, 168, 128, 0.25);
}
.btn-solid.btn-gold:hover {
  background: var(--black);
  color: var(--white);
  box-shadow: 0 8px 25px rgba(11, 15, 23, 0.35);
}
.btn-outline { 
  display: inline-flex; 
  align-items: center;
  gap: 10px;
  padding: 12px 34px; 
  border-radius: var(--btn-radius); 
  border: 2px solid var(--accent-gold); 
  color: var(--accent-gold); 
  font-size: 15px; 
  font-weight: 600; 
  transition: var(--transition); 
}
.btn-outline:hover { 
  background: var(--accent-gold); 
  color: var(--black); 
  transform: translateY(-2px); 
}

/* ===== CATALOG PAGE LAYOUT ===== */
.catalog-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  padding: 80px 40px;
  max-width: 1400px;
  margin: 0 auto;
}
.catalog-sidebar {
  background: var(--grey-bg);
  border-radius: var(--card-radius);
  padding: 30px;
  height: fit-content;
  border: 1px solid var(--grey-border);
  position: sticky;
  top: 100px;
}
.sidebar-section {
  margin-bottom: 30px;
}
.sidebar-section h3 {
  font-size: 16px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--primary);
  border-bottom: 2px solid var(--accent-gold);
  padding-bottom: 8px;
}
.search-wrapper {
  position: relative;
}
.search-input {
  width: 100%;
  padding: 12px 16px 12px 42px;
  border-radius: var(--btn-radius);
  border: 1px solid var(--grey-border);
  background: var(--white);
  font-size: 14px;
  transition: var(--transition);
}
.search-input:focus {
  border-color: var(--accent-blue);
  box-shadow: 0 0 0 3px rgba(0, 113, 227, 0.15);
}
.search-wrapper i {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
}
.filter-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.filter-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--white);
  color: var(--primary);
  box-shadow: var(--shadow-sm);
  font-weight: 600;
}
.filter-btn.active::before {
  content: '●';
  color: var(--accent-gold);
  margin-right: -10px;
  order: 2;
  font-size: 10px;
}
.filter-btn .count {
  font-size: 11px;
  background: #e2e8f0;
  padding: 2px 8px;
  border-radius: 10px;
  color: var(--text-muted);
}
.filter-btn.active .count {
  background: var(--accent-blue);
  color: var(--white);
}

.catalog-main {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.catalog-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.results-count {
  font-size: 15px;
  color: var(--text-muted);
}
.results-count span {
  font-weight: 700;
  color: var(--primary);
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}
.product-card {
  background: var(--white);
  border-radius: var(--card-radius);
  border: 1px solid var(--grey-border);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: rgba(0, 113, 227, 0.2);
}
.product-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--accent-gold);
  color: var(--black);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 10px;
  text-transform: uppercase;
  z-index: 2;
}
.product-img-box {
  height: 220px;
  background: var(--grey-bg);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  overflow: hidden;
}
.product-icon-large {
  font-size: 80px;
  transition: var(--transition);
}
.product-card:hover .product-icon-large {
  transform: scale(1.15) rotate(5deg);
}
.product-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.product-category {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 8px;
}
.product-body h4 {
  font-size: 17px;
  margin-bottom: 8px;
  line-height: 1.3;
}
.product-specs {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 16px;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--grey-border);
  padding-top: 16px;
  margin-top: auto;
}
.product-price {
  font-weight: 800;
  color: var(--accent-blue);
  font-size: 15px;
}
.btn-quote {
  background: var(--primary);
  color: var(--white);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.btn-quote:hover {
  background: var(--accent-gold);
  color: var(--black);
  transform: scale(1.1);
}

/* ===== QUOTE REQUEST PANEL ===== */
.quote-panel {
  position: fixed;
  top: 0;
  right: -420px;
  width: 400px;
  height: 100vh;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  z-index: 1500;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  border-left: 1px solid var(--grey-border);
}
.quote-panel.open {
  right: 0;
}
.quote-panel-header {
  padding: 24px;
  background: var(--black);
  color: var(--white);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.quote-panel-header h3 {
  color: var(--white);
  font-size: 18px;
}
.close-panel-btn {
  color: rgba(255,255,255,0.7);
  font-size: 20px;
  cursor: pointer;
  transition: var(--transition);
}
.close-panel-btn:hover {
  color: var(--accent-gold);
}
.quote-panel-items {
  flex-grow: 1;
  overflow-y: auto;
  padding: 24px;
}
.quote-panel-empty {
  text-align: center;
  padding: 40px 20px;
  color: var(--text-muted);
}
.quote-panel-empty i {
  font-size: 48px;
  margin-bottom: 16px;
  color: var(--accent-gold);
}
.quote-item-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--grey-border);
}
.quote-item-icon {
  width: 50px;
  height: 50px;
  background: var(--grey-bg);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}
.quote-item-details {
  flex-grow: 1;
}
.quote-item-details h5 {
  font-size: 14px;
  margin-bottom: 4px;
}
.quote-item-details p {
  font-size: 12px;
  color: var(--text-muted);
}
.remove-quote-item {
  color: #ef4444;
  cursor: pointer;
  padding: 4px;
  transition: var(--transition);
}
.remove-quote-item:hover {
  transform: scale(1.2);
}
.quote-panel-footer {
  padding: 24px;
  background: var(--grey-bg);
  border-top: 1px solid var(--grey-border);
}
.btn-submit-quote {
  width: 100%;
  padding: 14px;
  background: var(--accent-blue);
  color: var(--white);
  border-radius: var(--btn-radius);
  font-weight: 700;
  text-align: center;
  display: block;
  box-shadow: 0 4px 10px rgba(0, 113, 227, 0.2);
  transition: var(--transition);
}
.btn-submit-quote:hover {
  background: var(--accent-blue-hover);
  transform: translateY(-2px);
}
.panel-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);
  z-index: 1400;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}
.panel-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

/* ===== SERVICES PAGE ===== */
.services-intro {
  padding: 80px 40px 0;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.services-intro p {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.8;
}
.services-layout-grid {
  display: flex;
  flex-direction: column;
  gap: 80px;
  padding: 80px 40px;
  max-width: 1400px;
  margin: 0 auto;
}
.service-detail-card {
  display: flex;
  align-items: center;
  gap: 60px;
  background: var(--white);
  border-radius: var(--card-radius);
  padding: 60px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--grey-border);
}
.service-detail-card:nth-child(even) {
  flex-direction: row-reverse;
}
.service-detail-img {
  flex: 0.8;
  height: 360px;
  background: var(--grey-bg);
  border-radius: var(--card-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 120px;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 0 100px rgba(15, 23, 42, 0.05);
}
.service-detail-img::after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(197, 168, 128, 0.15) 0%, transparent 60%);
  top: 20px;
  right: 20px;
}
.service-detail-content {
  flex: 1.2;
}
.service-detail-content h3 {
  font-size: 28px;
  margin-bottom: 16px;
}
.service-detail-content p {
  color: var(--text-muted);
  font-size: 16px;
  margin-bottom: 24px;
  line-height: 1.8;
}
.service-detail-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.service-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 500;
}
.service-feature-item i {
  color: var(--accent-gold);
  font-size: 16px;
}

/* ===== ABOUT US PAGE ===== */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
}
.value-card {
  background: var(--white);
  padding: 40px;
  border-radius: var(--card-radius);
  border: 1px solid var(--grey-border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.value-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(197, 168, 128, 0.3);
}
.value-card i {
  font-size: 32px;
  color: var(--accent-gold);
  margin-bottom: 20px;
}
.value-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}
.value-card p {
  color: var(--text-muted);
  font-size: 14px;
}

.timeline-section {
  position: relative;
  max-width: 800px;
  margin: 60px auto 0;
  padding: 20px 0;
}
.timeline-section::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: var(--grey-border);
  transform: translateX(-50%);
}
.timeline-item {
  position: relative;
  margin-bottom: 50px;
  width: 50%;
  padding: 0 40px;
}
.timeline-item:nth-child(odd) {
  left: 0;
  text-align: right;
}
.timeline-item:nth-child(even) {
  left: 50%;
  text-align: left;
}
.timeline-dot {
  position: absolute;
  top: 5px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--accent-gold);
  border: 4px solid var(--white);
  box-shadow: 0 0 0 3px rgba(197, 168, 128, 0.2);
  z-index: 2;
}
.timeline-item:nth-child(odd) .timeline-dot {
  right: -8px;
}
.timeline-item:nth-child(even) .timeline-dot {
  left: -8px;
}
.timeline-date {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--accent-blue);
  margin-bottom: 8px;
}
.timeline-content {
  background: var(--white);
  padding: 24px;
  border-radius: var(--card-radius);
  border: 1px solid var(--grey-border);
  box-shadow: var(--shadow-sm);
  display: inline-block;
  text-align: left;
  max-width: 100%;
}
.timeline-content h4 {
  font-size: 16px;
  margin-bottom: 6px;
}
.timeline-content p {
  font-size: 13px;
  color: var(--text-muted);
}

/* ===== CONTACT US PAGE ===== */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  max-width: 1400px;
  margin: 0 auto;
}
.contact-form-box {
  background: var(--white);
  padding: 50px;
  border-radius: var(--card-radius);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--grey-border);
}
.contact-form-box h3 {
  font-size: 26px;
  margin-bottom: 24px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-group.full-width {
  grid-column: span 2;
}
.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
}
.form-control {
  width: 100%;
  padding: 14px 18px;
  border-radius: 8px;
  border: 1px solid var(--grey-border);
  background: var(--grey-bg);
  font-size: 14px;
  transition: var(--transition);
}
.form-control:focus {
  border-color: var(--accent-blue);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(0, 113, 227, 0.15);
}
textarea.form-control {
  resize: vertical;
  min-height: 140px;
}
.contact-info-box {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.info-card {
  background: var(--white);
  padding: 30px;
  border-radius: var(--card-radius);
  border: 1px solid var(--grey-border);
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: 20px;
}
.info-card-icon {
  width: 50px;
  height: 50px;
  background: rgba(197, 168, 128, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--accent-gold);
  flex-shrink: 0;
}
.info-card-text h4 {
  font-size: 16px;
  margin-bottom: 6px;
}
.info-card-text p, .info-card-text a {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}
.info-card-text a:hover {
  color: var(--accent-blue);
  text-decoration: underline;
}

.map-container {
  border-radius: var(--card-radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--grey-border);
  height: 350px;
  margin-top: 60px;
}
.map-placeholder {
  background: #e2e8f0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  position: relative;
  text-align: center;
}
.map-placeholder i {
  font-size: 54px;
  color: var(--accent-gold);
  margin-bottom: 12px;
}

/* ===== FOOTER ===== */
.footer { 
  background: var(--black); 
  color: var(--white); 
  padding: 80px 40px 30px; 
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.footer-inner { max-width: 1400px; margin: 0 auto; }
.footer-top { 
  display: grid; 
  grid-template-columns: 2fr 1fr 1fr 1.2fr 1.8fr; 
  gap: 50px; 
  margin-bottom: 60px; 
}
.footer-col h4 { 
  font-size: 14px; 
  font-weight: 600; 
  margin-bottom: 24px; 
  text-transform: uppercase; 
  letter-spacing: 1px; 
  color: var(--accent-gold); 
}
.footer-col a, .footer-col p { 
  display: block; 
  font-size: 14px; 
  color: rgba(255,255,255,0.65); 
  margin-bottom: 12px; 
  transition: var(--transition); 
  line-height: 1.6;
}
.footer-col a:hover { 
  color: var(--white); 
}
.footer-logo-text { 
  font-size: 26px; 
  font-weight: 800; 
  margin-bottom: 8px; 
  color: var(--white);
  font-family: 'Outfit', sans-serif;
}
.footer-logo-sub { 
  font-size: 9px; 
  color: var(--accent-gold); 
  text-transform: uppercase; 
  letter-spacing: 1.5px; 
  margin-bottom: 20px; 
  display: block; 
  font-weight: 600;
}
.footer-newsletter { 
  display: flex; 
  gap: 10px; 
  margin-top: 16px; 
}
.footer-newsletter input { 
  flex: 1; 
  padding: 12px 18px; 
  border-radius: var(--btn-radius); 
  border: 1px solid rgba(255,255,255,0.15); 
  background: rgba(255,255,255,0.05); 
  color: var(--white); 
  font-size: 13px; 
  outline: none; 
  transition: var(--transition); 
}
.footer-newsletter input:focus { 
  border-color: var(--accent-gold); 
  background: rgba(255,255,255,0.08);
}
.footer-newsletter button { 
  padding: 12px 24px; 
  border-radius: var(--btn-radius); 
  background: var(--accent-gold); 
  color: var(--black); 
  font-size: 13px; 
  font-weight: 700; 
  transition: var(--transition); 
}
.footer-newsletter button:hover { 
  background: var(--white); 
}
.footer-social { 
  display: flex; 
  gap: 12px; 
  margin-top: 24px; 
}
.footer-social a { 
  width: 38px; 
  height: 38px; 
  border-radius: 50%; 
  background: rgba(255,255,255,0.05); 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  color: rgba(255,255,255,0.6); 
  font-size: 15px; 
  transition: var(--transition); 
  border: 1px solid rgba(255,255,255,0.05);
}
.footer-social a:hover { 
  background: var(--accent-gold); 
  color: var(--black); 
  border-color: var(--accent-gold);
}
.footer-bottom { 
  border-top: 1px solid rgba(255,255,255,0.08); 
  padding-top: 30px; 
  text-align: center; 
  font-size: 13px; 
  color: rgba(255,255,255,0.4); 
}

/* ===== ANIMATIONS ===== */
.animate-in { 
  opacity: 0; 
  transform: translateY(20px); 
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1); 
}
.animate-in.visible { 
  opacity: 1; 
  transform: translateY(0); 
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
  .footer-top {
    grid-template-columns: 2fr 1fr 1fr 2fr;
  }
  .footer-col:last-child {
    grid-column: span 2;
  }
}
@media (max-width: 1024px) {
  .nav-menu { display: none; }
  .hamburger { display: flex; }
  .navbar { padding: 0 30px; }
  .nav-menu.open { 
    display: flex; 
    flex-direction: column; 
    position: absolute; 
    top: var(--nav-height); 
    left: 0; 
    right: 0; 
    background: rgba(11, 15, 23, 0.98); 
    padding: 30px 40px; 
    gap: 20px; 
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .catalog-layout {
    grid-template-columns: 1fr;
  }
  .catalog-sidebar {
    position: relative;
    top: 0;
    width: 100%;
  }
  .split-section, .split-section.reverse { 
    flex-direction: column; 
    padding: 60px 20px; 
    gap: 40px;
  }
  .split-visual { width: 100%; min-height: 280px; }
  .service-detail-card {
    flex-direction: column;
    padding: 30px;
  }
  .service-detail-card:nth-child(even) {
    flex-direction: column;
  }
  .service-detail-img {
    width: 100%;
    height: 250px;
  }
  .hero {
    min-height: 0;
    padding: 0;
  }
  .hero-stage { aspect-ratio: 3 / 1; }
  .hero-visual { min-height: 0; }
}
@media (max-width: 768px) {
  .section { padding: 60px 20px; }
  .section-title { font-size: 30px; }
  .hero {
    min-height: 0;
    padding: 0;
  }
  .hero-stage {
    aspect-ratio: auto;
    height: 280px;
  }
  .hero-visual {
    min-height: 0;
  }
  .hero-visual img,
  .hero-img { padding: 0; }
  .hero-arrows { display: none; }
  .hero-dots {
    left: 50%;
    transform: translateX(-50%);
    bottom: 12px;
  }
  .categories-grid {
    grid-template-columns: 1fr;
  }
  .values-grid {
    grid-template-columns: 1fr;
  }
  .timeline-section::before {
    left: 20px;
  }
  .timeline-item {
    width: 100%;
    padding-left: 50px;
    padding-right: 0;
    text-align: left !important;
  }
  .timeline-item:nth-child(odd) .timeline-dot,
  .timeline-item:nth-child(even) .timeline-dot {
    left: 12px;
  }
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
  .contact-form-box {
    padding: 30px 20px;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .form-group.full-width {
    grid-column: span 1;
  }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-col:first-child { grid-column: span 2; }
  .footer-col:last-child { grid-column: span 2; }
}
@media (max-width: 480px) {
  .footer-top { grid-template-columns: 1fr; }
  .footer-col:first-child { grid-column: span 1; }
  .footer-col:last-child { grid-column: span 1; }
}
