/* ============================================
   ORIENTAL MANUFACTURERS - MODERN CREATIVE DESIGN
   Latest Design Trends & Creative Layouts
   ============================================ */

:root {
  --primary-gold: #d5a156;
  --primary-gold-dark: #b8873f;
  --primary-gold-light: #e0b575;
  --primary-gold-lighter: #e8c896;
  --accent-gold: #f4d03f;
  --accent-bronze: #c8963e;
  --steel-grey: #64748B;
  --steel-grey-light: #94A3B8;
  --steel-grey-lighter: #CBD5E1;
  --bg-white: #FFFFFF;
  --bg-light: #F8FAFC;
  --bg-lighter: #F1F5F9;
  --text-dark: #0F172A;
  --text-medium: #334155;
  --text-light: #64748B;
  --border-color: #E2E8F0;
  --gradient-1: linear-gradient(135deg, #d5a156 0%, #c8963e 100%);
  --gradient-2: linear-gradient(135deg, #f4d03f 0%, #d5a156 100%);
  --gradient-3: linear-gradient(135deg, #F8FAFC 0%, #E2E8F0 100%);
  --shadow-sm: 0 2px 8px rgba(213, 161, 86, 0.1);
  --shadow-md: 0 4px 16px rgba(213, 161, 86, 0.15);
  --shadow-lg: 0 12px 40px rgba(213, 161, 86, 0.2);
  --shadow-xl: 0 20px 60px rgba(213, 161, 86, 0.25);
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text-dark);
  background: var(--bg-white);
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* ============================================
   NAVIGATION
   ============================================ */

.main-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgb(15 23 42);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.nav-brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-main {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--primary-gold);
}

.brand-tag {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--steel-grey);
  text-transform: uppercase;
  margin-top: 2px;
}

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

.nav-link {
  text-decoration: none;
  color: #ffffff;
  font-weight: 500;
  font-size: 15px;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-1);
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: var(--primary-gold);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-btn {
  background: var(--gradient-1);
  color: var(--bg-white) !important;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.nav-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.mobile-toggle {
  background: none;
  border: none;
  font-size: 24px;
  color: var(--text-dark);
  cursor: pointer;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero-modern {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 20px 0 20px;
  overflow: hidden;
}

.hero-bg-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #F8FAFC 0%, #FFFFFF 50%, #F1F5F9 100%);
  opacity: 1;
  z-index: -3;
}

.hero-grid-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(rgba(213, 161, 86, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(213, 161, 86, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: -1;
  opacity: 0.6;
}

.hero-shape-decoration {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(213, 161, 86, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  z-index: -2;
  animation: float 20s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(30px, -30px) rotate(180deg); }
}

.hero-content-wrapper {
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(213, 161, 86, 0.12);
  border: 1.5px solid rgba(213, 161, 86, 0.25);
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  color: var(--primary-gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 32px;
  transition: all 0.3s ease;
}

.hero-badge:hover {
  background: rgba(213, 161, 86, 0.18);
  border-color: rgba(213, 161, 86, 0.4);
  transform: translateY(-2px);
}

.badge-icon {
  font-size: 14px;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

.hero-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 76px;
  font-weight: 800;
  line-height: 1.05;
  color: var(--text-dark);
  margin-bottom: 28px;
  letter-spacing: -2.5px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.title-line-1 {
  display: block;
  opacity: 0.95;
}

.title-line-2 {
  display: block;
  font-size: 82px;
  margin-left: -4px;
}

.title-line-3 {
  display: block;
  opacity: 0.95;
}

.gradient-text {
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 19px;
  line-height: 1.75;
  color: var(--text-medium);
  max-width: 580px;
  margin-bottom: 32px;
  font-weight: 400;
}

.hero-certifications {
  display: flex;
  gap: 12px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.cert-badge {
  display: inline-block;
  padding: 6px 14px;
  background: var(--bg-white);
  border: 1.5px solid var(--border-color);
  border-radius: 8px;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.cert-badge:hover {
  border-color: var(--primary-gold);
  color: var(--primary-gold);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(213, 161, 86, 0.15);
}

.hero-actions {
  display: flex;
  gap: 18px;
  margin-bottom: 64px;
  flex-wrap: wrap;
}

.btn-primary-modern {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gradient-1);
  color: var(--bg-white);
  padding: 18px 36px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 24px rgba(213, 161, 86, 0.25);
  border: none;
}

.btn-primary-modern:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(213, 161, 86, 0.35);
  gap: 14px;
  color: var(--bg-white);
}

.btn-primary-modern svg {
  transition: transform 0.3s ease;
}

.btn-primary-modern:hover svg {
  transform: translateX(4px);
}

.btn-secondary-modern {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-white);
  color: var(--primary-gold);
  padding: 18px 36px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  border: 2px solid var(--primary-gold);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 16px rgba(213, 161, 86, 0.1);
}

.btn-secondary-modern:hover {
  background: var(--gradient-1);
  color: var(--bg-white);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(213, 161, 86, 0.25);
  border-color: transparent;
}

.btn-secondary-modern svg {
  transition: transform 0.3s ease;
}

.btn-secondary-modern:hover svg {
  transform: translateX(4px);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  max-width: 650px;
}

.stat-box {
  background: var(--bg-white);
  padding: 20px 15px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 1.5px solid var(--border-color);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: anchor-center;
  gap: 16px;
  position: relative;
  overflow: hidden;
}

.stat-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--gradient-1);
  transform: scaleY(0);
  transition: transform 0.4s ease;
}

.stat-box:hover::before {
  transform: scaleY(1);
}

.stat-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(213, 161, 86, 0.2);
  border-color: var(--primary-gold-light);
}

.stat-icon {
  width: 48px;
  height: 48px;
  background: rgba(213, 161, 86, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.stat-icon svg {
  color: var(--primary-gold);
  stroke: var(--primary-gold);
}

.stat-box:hover .stat-icon {
  background: var(--gradient-1);
  transform: scale(1.1) rotate(5deg);
}

.stat-box:hover .stat-icon svg {
  color: var(--bg-white);
  stroke: var(--bg-white);
}

.stat-content {
  flex: 1;
}

.stat-number {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 38px;
  font-weight: 800;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 6px;
  transition: all 0.3s ease;
}

.stat-box:hover .stat-number {
  transform: scale(1.05);
}

.stat-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--steel-grey);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  line-height: 1.4;
}

.hero-image-container {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.12);
  aspect-ratio: 4/3;
  z-index: 1;
}

.hero-image-frame {
  position: absolute;
  top: -8px;
  left: -8px;
  right: -8px;
  bottom: -8px;
  border: 2px solid rgba(213, 161, 86, 0.2);
  border-radius: 32px;
  z-index: -1;
  transition: all 0.5s ease;
}

.hero-image-container:hover .hero-image-frame {
  border-color: var(--primary-gold);
  top: -12px;
  left: -12px;
  right: -12px;
  bottom: -12px;
}

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

.hero-image-container:hover .hero-main-image {
  transform: scale(1.08);
}

.hero-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(213, 161, 86, 0.08) 0%, transparent 60%);
  pointer-events: none;
  transition: opacity 0.5s ease;
}

.hero-image-container:hover .hero-image-overlay {
  opacity: 0.5;
}

.hero-image-badge {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 10px 20px;
  border-radius: 50px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(213, 161, 86, 0.2);
}

.hero-image-badge span {
  font-size: 12px;
  font-weight: 700;
  color: var(--primary-gold);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ============================================
   SECTION INTRO
   ============================================ */

.section-intro {
  margin-bottom: 80px;
}

.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--primary-gold);
  text-transform: uppercase;
  margin-bottom: 20px;
  padding: 6px 14px;
  background: rgba(213, 161, 86, 0.1);
  border-radius: 50px;
}

.section-heading {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 56px;
  font-weight: 800;
  line-height: 1.1;
  color: var(--text-dark);
  letter-spacing: -1.5px;
}

/* ============================================
   CAPABILITIES
   ============================================ */

.capabilities-modern {
  padding: 140px 0;
  background: var(--bg-light);
}

.section-subtitle {
  font-size: 18px;
  color: var(--text-medium);
  margin-top: 20px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.capabilities-layout {
  display: flex;
  flex-direction: column;
  gap: 80px;
  margin-top: 80px;
}

.cap-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  background: var(--bg-white);
  border-radius: 32px;
  padding: 0;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cap-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-gold-light);
}

.cap-item-reverse {
  direction: rtl;
}

.cap-item-reverse > * {
  direction: ltr;
}

.cap-item-image {
  position: relative;
  height: 500px;
  overflow: hidden;
}

.cap-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.cap-item-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(213, 161, 86, 0.1) 0%, transparent 50%);
  z-index: 1;
}

.cap-item-number {
  position: absolute;
  top: 30px;
  left: 30px;
  width: 80px;
  height: 80px;
  background: var(--gradient-1);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--bg-white);
  box-shadow: 0 8px 24px rgba(213, 161, 86, 0.3);
  z-index: 2;
}

.cap-item-reverse .cap-item-number {
  left: auto;
  right: 30px;
}

.cap-item-content {
  padding: 60px;
}

.cap-item-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: -1px;
}

.cap-item-desc {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-medium);
  margin-bottom: 32px;
}

.cap-item-specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
  padding: 24px;
  background: var(--bg-light);
  border-radius: 16px;
}

.spec-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.spec-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--steel-grey);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.spec-value {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
}

.cap-item-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 700;
  color: var(--primary-gold);
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 12px 24px;
  background: rgba(213, 161, 86, 0.1);
  border-radius: 10px;
  border: 1px solid rgba(213, 161, 86, 0.2);
}

.cap-item-link:hover {
  gap: 14px;
  background: var(--gradient-1);
  color: var(--bg-white);
  border-color: transparent;
  transform: translateX(4px);
}

.cap-item-link svg {
  transition: transform 0.3s ease;
}

.cap-item-link:hover svg {
  transform: translateX(4px);
}

/* ============================================
   REACH US CTA BANNER - CLEAN MODERN
   ============================================ */

.reach-us-cta {
  padding: 100px 0;
  background: var(--bg-light);
  margin: 0px 0;
}

.reach-us-wrapper {
  background: var(--bg-white);
  border-radius: 32px;
  padding: 60px 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.reach-us-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: var(--gradient-1);
  border-radius: 32px 0 0 32px;
}

.reach-us-left {
  flex: 1;
}

.reach-us-heading {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 20px;
  letter-spacing: -1.5px;
  line-height: 1.2;
}

.reach-us-text {
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-medium);
  margin: 0;
  max-width: 600px;
}

.reach-us-right {
  flex-shrink: 0;
}

.reach-us-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--gradient-1);
  color: var(--bg-white);
  padding: 20px 40px;
  font-size: 17px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(213, 161, 86, 0.25);
  white-space: nowrap;
}

.reach-us-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(213, 161, 86, 0.35);
  gap: 16px;
  color: var(--bg-white);
}

.reach-us-button svg {
  transition: transform 0.3s ease;
}

.reach-us-button:hover svg {
  transform: translateX(4px);
}

/* ============================================
   CERTIFICATIONS
   ============================================ */

.certifications-modern {
  padding: 140px 0;
  background: var(--bg-white);
  position: relative;
  overflow: hidden;
}

.cert-bg-shape {
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(213, 161, 86, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.cert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  position: relative;
  z-index: 1;
}

.cert-grid-single-row {
  grid-template-columns: repeat(3, 1fr);
  max-width: 1200px;
  margin: 0 auto;
}

.cert-card {
  background: var(--bg-light);
  padding: 32px;
  border-radius: 20px;
  border: 2px solid var(--border-color);
  transition: all 0.3s ease;
  text-align: center;
}

.cert-card:hover {
  background: var(--bg-white);
  border-color: var(--primary-gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.cert-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: var(--gradient-1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: var(--bg-white);
  box-shadow: var(--shadow-md);
}

.cert-card h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.cert-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-medium);
}

/* ============================================
   ABOUT / TIMELINE - HORIZONTAL DESIGN
   ============================================ */

.about-modern {
  padding: 140px 0;
  background: var(--bg-light);
  position: relative;
  overflow: hidden;
}

.timeline-horizontal {
  position: relative;
  max-width: 1400px;
  margin: 80px auto 0;
  padding: 100px 0 60px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}

.timeline-line-horizontal {
  position: absolute;
  top: 140px;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-gold) 0%, var(--primary-gold-dark) 100%);
  border-radius: 2px;
  box-shadow: 0 0 20px rgba(213, 161, 86, 0.4);
  z-index: 1;
}

.timeline-item-horizontal {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
}

.timeline-year-horizontal {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--primary-gold);
  margin-bottom: 16px;
  line-height: 1;
  text-align: center;
}

.timeline-marker-horizontal {
  width: 20px;
  height: 20px;
  background: var(--bg-white);
  border: 4px solid var(--primary-gold);
  border-radius: 50%;
  box-shadow: 0 0 0 6px var(--bg-light), 0 4px 12px rgba(213, 161, 86, 0.3);
  margin-bottom: 24px;
  z-index: 3;
  transition: all 0.3s ease;
}

.timeline-item-horizontal:hover .timeline-marker-horizontal {
  transform: scale(1.3);
  box-shadow: 0 0 0 8px var(--bg-light), 0 6px 20px rgba(213, 161, 86, 0.4);
  background: var(--primary-gold);
}

.timeline-card-horizontal {
  background: var(--bg-white);
  padding: 32px;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  border: 2px solid var(--border-color);
  width: 100%;
  max-width: 240px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.timeline-card-horizontal::before {
  content: '';
  position: absolute;
  top: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 4px;
  background: var(--gradient-1);
  border-radius: 20px 20px 0 0;
  transition: width 0.4s ease;
}

.timeline-card-horizontal:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-gold-light);
}

.timeline-card-horizontal:hover::before {
  width: 100%;
}

.timeline-icon-horizontal {
  width: 56px;
  height: 56px;
  background: rgba(213, 161, 86, 0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  border: 2px solid rgba(213, 161, 86, 0.2);
  transition: all 0.3s ease;
}

.timeline-icon-horizontal svg {
  width: 28px;
  height: 28px;
  color: var(--primary-gold);
  stroke: var(--primary-gold);
}

.timeline-card-horizontal:hover .timeline-icon-horizontal {
  background: var(--gradient-1);
  border-color: var(--primary-gold);
  transform: scale(1.1);
}

.timeline-card-horizontal:hover .timeline-icon-horizontal svg {
  color: var(--bg-white);
  stroke: var(--bg-white);
}

.timeline-title-horizontal {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
  line-height: 1.3;
}

.timeline-text-horizontal {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-medium);
  margin: 0;
}

/* ============================================
   CTA SECTION - REDESIGNED
   ============================================ */

.cta-redesigned {
  padding: 120px 0;
  background: var(--bg-light);
  position: relative;
}

.cta-content-new {
  padding-right: 40px;
}

.cta-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(213, 161, 86, 0.1);
  border: 1px solid rgba(213, 161, 86, 0.3);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  color: var(--primary-gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.cta-heading-new {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 48px;
  font-weight: 800;
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.cta-description-new {
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-medium);
  margin-bottom: 40px;
}

.cta-btn-new {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--gradient-1);
  color: var(--bg-white);
  padding: 18px 36px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 12px;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-md);
}

.cta-btn-new:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  gap: 16px;
  color: var(--bg-white);
}

.cta-btn-new svg {
  transition: transform 0.3s ease;
}

.cta-btn-new:hover svg {
  transform: translateX(4px);
}

.cta-contact-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-card {
  background: var(--bg-white);
  padding: 32px;
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  display: flex;
  gap: 24px;
  align-items: flex-start;
  transition: all 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-gold-light);
}

.contact-icon {
  width: 56px;
  height: 56px;
  background: var(--gradient-1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

.contact-icon svg {
  width: 24px;
  height: 24px;
  color: var(--bg-white);
  stroke: var(--bg-white);
}

.contact-card:hover .contact-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: var(--shadow-lg);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--steel-grey);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.contact-value {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.5;
}

/* ============================================
   FOOTER
   ============================================ */

.footer-modern {
  position: relative;
  padding: 100px 0 0;
  background: linear-gradient(180deg, #0F172A 0%, #1E293B 100%);
  color: var(--steel-grey-light);
  overflow: hidden;
}

.footer-top-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--primary-gold) 50%, transparent 100%);
  opacity: 0.3;
}

.footer-main-content {
  padding-bottom: 60px;
  position: relative;
}

.footer-main-content::before {
  content: '';
  position: absolute;
  top: -60px;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(180deg, transparent 0%, rgba(213, 161, 86, 0.05) 100%);
}

.footer-brand-section {
  padding-right: 40px;
}

.footer-brand-modern {
  margin-bottom: 24px;
  position: relative;
}

.footer-brand-modern::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--gradient-1);
  border-radius: 2px;
}

.footer-brand-main {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--primary-gold);
  margin-bottom: 6px;
  letter-spacing: -0.5px;
  line-height: 1.1;
}

.footer-brand-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  margin-left: 2px;
}

.footer-desc {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.7);
  max-width: 320px;
  margin-top: 32px;
  margin-bottom: 28px;
}

.footer-certifications {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.footer-cert-badge {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(213, 161, 86, 0.1);
  border: 1px solid rgba(213, 161, 86, 0.2);
  border-radius: 6px;
  font-size: 10px;
  font-weight: 700;
  color: var(--primary-gold);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.footer-cert-badge:hover {
  background: rgba(213, 161, 86, 0.2);
  border-color: var(--primary-gold);
  transform: translateY(-2px);
}

.footer-col {
  margin-bottom: 50px;
}

.footer-heading {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--bg-white);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  padding-bottom: 12px;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--gradient-1);
  border-radius: 1px;
}

.footer-heading-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(213, 161, 86, 0.1);
  border-radius: 6px;
  color: var(--primary-gold);
}

.footer-heading-icon svg {
  width: 16px;
  height: 16px;
}

.footer-links-modern {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.footer-links-modern a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 15px;
  padding: 8px 0;
  transition: all 0.3s ease;
  border-radius: 6px;
  position: relative;
}

.footer-links-modern a span {
  flex: 1;
}

.footer-links-modern a svg {
  opacity: 0;
  transform: translateX(-4px);
  transition: all 0.3s ease;
  color: var(--primary-gold);
}

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

.footer-links-modern a:hover svg {
  opacity: 1;
  transform: translateX(0);
}

.footer-address-wrapper {
  margin-top: 8px;
}

.footer-address-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.footer-location-icon {
  width: 44px;
  height: 44px;
  background: rgba(213, 161, 86, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(213, 161, 86, 0.2);
  transition: all 0.3s ease;
}

.footer-location-icon svg {
  color: var(--primary-gold);
}

.footer-address-item:hover .footer-location-icon {
  background: rgba(213, 161, 86, 0.2);
  border-color: var(--primary-gold);
  transform: scale(1.05);
}

.footer-address-text {
  flex: 1;
}

.footer-address-text p {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 6px 0;
}

.address-line-1 {
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
}

.address-line-2 {
  color: rgba(255, 255, 255, 0.7);
}

.address-line-3 {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 12px !important;
}

.footer-map-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary-gold);
  text-decoration: none;
  margin-top: 8px;
  padding: 6px 12px;
  background: rgba(213, 161, 86, 0.1);
  border-radius: 6px;
  border: 1px solid rgba(213, 161, 86, 0.2);
  transition: all 0.3s ease;
}

.footer-map-link svg {
  width: 14px;
  height: 14px;
  transition: transform 0.3s ease;
}

.footer-map-link:hover {
  background: rgba(213, 161, 86, 0.2);
  border-color: var(--primary-gold);
  color: var(--primary-gold);
  transform: translateX(4px);
}

.footer-map-link:hover svg {
  transform: translateX(2px);
}

.footer-contact-wrapper {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: all 0.3s ease;
}

.footer-contact-item:hover {
  transform: translateX(4px);
}

.footer-contact-icon {
  width: 40px;
  height: 40px;
  background: rgba(213, 161, 86, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
  border: 1px solid rgba(213, 161, 86, 0.2);
}

.footer-contact-icon svg {
  color: var(--primary-gold);
}

.footer-contact-item:hover .footer-contact-icon {
  background: rgba(213, 161, 86, 0.2);
  border-color: var(--primary-gold);
  transform: scale(1.1);
}

.footer-contact-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-contact-text a {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-contact-text a:hover {
  color: var(--primary-gold);
  transform: translateX(4px);
}

.footer-bottom-modern {
  margin-top: 60px;
  padding: 32px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}

.footer-bottom-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--primary-gold) 50%, transparent 100%);
  opacity: 0.3;
}

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

.footer-copyright {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-bottom-links a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-bottom-links a:hover {
  color: var(--primary-gold);
}

.footer-divider {
  color: rgba(255, 255, 255, 0.2);
  font-size: 14px;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1200px) {
  .hero-title {
    font-size: 64px;
  }
  
  .title-line-2 {
    font-size: 70px;
  }
  
  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  
  .stat-box {
    padding: 24px 20px;
  }
  
  .stat-number {
    font-size: 32px;
  }
  
  .section-heading {
    font-size: 48px;
  }
  
  .capabilities-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

@media (max-width: 992px) {
  .hero-modern {
    padding: 120px 0 80px;
    min-height: auto;
  }
  
  .hero-title {
    font-size: 52px;
  }
  
  .title-line-2 {
    font-size: 58px;
    margin-left: 0;
  }
  
  .hero-subtitle {
    font-size: 18px;
  }
  
  .hero-certifications {
    margin-bottom: 40px;
  }
  
  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    max-width: 100%;
  }
  
  .stat-box {
    padding: 20px 16px;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
  }
  
  .stat-icon {
    width: 40px;
    height: 40px;
  }
  
  .stat-icon svg {
    width: 20px;
    height: 20px;
  }
  
  .stat-number {
    font-size: 28px;
  }
  
  .stat-label {
    font-size: 11px;
  }
  
  .hero-image-container {
    margin-top: 60px;
  }
  
  .capabilities-modern,
  .certifications-modern,
  .about-modern,
  .cta-modern {
    padding: 100px 0;
  }
  
  .section-heading {
    font-size: 42px;
  }
  
  .capabilities-layout {
    gap: 60px;
  }
  
  .cap-item {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .cap-item-reverse {
    direction: ltr;
  }
  
  .cap-item-image {
    height: 400px;
  }
  
  .cap-item-content {
    padding: 40px;
  }
  
  .cap-item-title {
    font-size: 32px;
  }
  
  .cap-item-specs {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .cert-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  
  .cert-grid-single-row {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .reach-us-cta {
    padding: 80px 0;
    margin: 60px 0;
  }
  
  .reach-us-wrapper {
    padding: 50px 60px;
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }
  
  .reach-us-heading {
    font-size: 40px;
  }
  
  .reach-us-text {
    margin: 0 auto;
  }
  
  .cta-redesigned {
    padding: 100px 0;
  }
  
  .cta-heading-new {
    font-size: 40px;
  }
  
  .cta-content-new {
    padding-right: 0;
    margin-bottom: 40px;
  }
  
  /* Footer Responsive */
  .footer-modern {
    padding: 90px 0 0;
  }
  
  .footer-brand-section {
    padding-right: 20px;
  }
  
  .footer-main-content {
    padding-bottom: 50px;
  }
}

@media (max-width: 768px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
  
  .hero-modern {
    padding: 100px 0 60px;
  }
  
  .hero-badge {
    font-size: 10px;
    padding: 8px 16px;
    margin-bottom: 24px;
  }
  
  .badge-icon {
    font-size: 12px;
  }
  
  .hero-title {
    font-size: 42px;
    margin-bottom: 20px;
  }
  
  .title-line-1,
  .title-line-3 {
    font-size: 42px;
  }
  
  .title-line-2 {
    font-size: 48px;
    margin-left: 0;
  }
  
  .hero-subtitle {
    font-size: 17px;
    margin-bottom: 28px;
  }
  
  .hero-certifications {
    gap: 8px;
    margin-bottom: 32px;
  }
  
  .cert-badge {
    font-size: 10px;
    padding: 5px 12px;
  }
  
  .hero-actions {
    flex-direction: column;
    gap: 14px;
    margin-bottom: 48px;
  }
  
  .btn-primary-modern,
  .btn-secondary-modern {
    width: 100%;
    justify-content: center;
    padding: 16px 32px;
    font-size: 15px;
  }
  
  .hero-stats {
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 100%;
  }
  
  .stat-box {
    padding: 24px;
    flex-direction: row;
    align-items: center;
    text-align: left;
  }
  
  .stat-icon {
    width: 44px;
    height: 44px;
  }
  
  .stat-number {
    font-size: 32px;
  }
  
  .stat-label {
    font-size: 11px;
  }
  
  .hero-image-container {
    margin-top: 40px;
    border-radius: 24px;
  }
  
  .hero-image-badge {
    bottom: 16px;
    right: 16px;
    padding: 8px 16px;
  }
  
  .hero-image-badge span {
    font-size: 11px;
  }
  
  .section-heading {
    font-size: 36px;
  }
  
  .reach-us-banner {
    padding: 80px 0;
    margin: 60px 0;
  }
  
  .reach-us-cta {
    padding: 60px 0;
    margin: 40px 0;
  }
  
  .reach-us-wrapper {
    padding: 40px 30px;
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }
  
  .reach-us-heading {
    font-size: 32px;
  }
  
  .reach-us-text {
    font-size: 16px;
  }
  
  .reach-us-button {
    width: 100%;
    justify-content: center;
    padding: 18px 32px;
  }
  
  .cta-title {
    font-size: 36px;
  }
  
  .cta-info {
    flex-direction: column;
    gap: 30px;
  }
  
  .timeline-horizontal {
    flex-direction: column;
    gap: 60px;
    padding: 60px 0;
  }
  
  .timeline-line-horizontal {
    display: none;
  }
  
  .timeline-item-horizontal {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }
  
  .timeline-card-horizontal {
    max-width: 100%;
  }
  
  .timeline-year-horizontal {
    font-size: 24px;
  }
  
  .cap-item-image {
    height: 300px;
  }
  
  .cap-item-content {
    padding: 32px 24px;
  }
  
  .cap-item-title {
    font-size: 28px;
  }
  
  .cap-item-specs {
    grid-template-columns: 1fr;
    padding: 20px;
  }
  
  .cert-grid-single-row {
    grid-template-columns: 1fr;
  }
  
  .cta-heading-new {
    font-size: 32px;
  }
  
  .cta-description-new {
    font-size: 16px;
  }
  
  .contact-card {
    flex-direction: column;
    text-align: center;
    padding: 24px;
  }
  
  .contact-icon {
    margin: 0 auto;
  }
  
  /* Footer Responsive */
  .footer-modern {
    padding: 80px 0 0;
  }
  
  .footer-brand-section {
    padding-right: 0;
    margin-bottom: 40px;
  }
  
  .footer-brand-main {
    font-size: 28px;
  }
  
  .footer-desc {
    max-width: 100%;
    margin-top: 24px;
    margin-bottom: 24px;
  }
  
  .footer-certifications {
    margin-top: 20px;
  }
  
  .footer-col {
    margin-bottom: 40px;
  }
  
  .footer-heading {
    font-size: 15px;
    margin-bottom: 20px;
  }
  
  .footer-heading-icon {
    width: 22px;
    height: 22px;
  }
  
  .footer-heading-icon svg {
    width: 14px;
    height: 14px;
  }
  
  .footer-address-item,
  .footer-contact-item {
    gap: 12px;
  }
  
  .footer-location-icon {
    width: 40px;
    height: 40px;
  }
  
  .footer-location-icon svg {
    width: 20px;
    height: 20px;
  }
  
  .footer-address-text p {
    font-size: 14px;
    margin-bottom: 4px;
  }
  
  .footer-map-link {
    font-size: 12px;
    padding: 5px 10px;
  }
  
  .footer-contact-icon {
    width: 36px;
    height: 36px;
  }
  
  .footer-contact-icon svg {
    width: 18px;
    height: 18px;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }
  
  .footer-bottom-links {
    justify-content: center;
  }
  
}
