/* ==========================================================================
   PT ABSOLID DATA PRIOTAMA - PREMIUM DESIGN SYSTEM (theme.css - BRIGHT LIGHT MODE)
   ========================================================================== */

/* 1. Root Variables & Theme Tokens */
:root {
  /* Set 7 Primary Colors (Strictly Maintained) */
  --color-coral: #ff613c;
  --color-coral-light: #ff8e74;
  --color-coral-dark: #e04a27; /* Sophisticated darker tone for hovers */
  
  /* Brand Navy & Slate used as Dark Accents/Typography in Light Mode */
  --color-deep-navy: #080337;
  --color-deep-navy-light: #120b54;
  --color-deep-navy-dark: #020112;
  --color-slate-blue: #396680;
  --color-slate-blue-light: #487c9b;
  --color-slate-blue-dark: #244152;

  /* Bright Background System (Premium Slate-based hues) */
  --color-white: #ffffff;
  --color-light-bg: #f8fafc; /* Beautiful Ice-Slate Slate-50 background */
  --color-light-bg-alt: #f1f5f9; /* Slate-100 background for separation */
  --color-border: rgba(8, 3, 55, 0.05); /* Soft navy-tinted border */
  --color-border-hover: rgba(255, 97, 60, 0.15);
  --color-card-bg: #ffffff;
  
  /* Premium Light-mode Typography */
  --color-text-primary: #0f172a; /* Slate-900: Perfect dark slate for reading comfort */
  --color-text-secondary: #475569; /* Slate-600: Secondary text */
  --color-text-muted: #94a3b8; /* Slate-400: Subtitles and dates */

  /* Typography Mapping */
  --font-heading: 'Space Grotesk', 'Kumbh Sans', sans-serif;
  --font-body: 'Jost', sans-serif;
  
  /* Drop Shadows & Glows (Modern multi-layered shadows for premium floating-card feel) */
  --shadow-sm: 0 1px 2px 0 rgba(15, 23, 42, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(15, 23, 42, 0.06), 0 2px 4px -2px rgba(15, 23, 42, 0.04);
  --shadow-lg: 0 10px 15px -3px rgba(15, 23, 42, 0.06), 0 4px 6px -4px rgba(15, 23, 42, 0.04), 0 20px 25px -5px rgba(15, 23, 42, 0.02);
  --glow-coral: 0 0 20px rgba(255, 97, 60, 0.35);
  
  /* Transitions (Optimized smooth cubic-beziers) */
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-normal: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* 2. Global Resets & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-white);
  color: var(--color-text-secondary);
  overflow-x: hidden;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-deep-navy);
  font-weight: 700;
  line-height: 1.25;
}

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

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

/* Custom Premium Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--color-light-bg);
}
::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 5px;
  border: 2px solid var(--color-light-bg);
  transition: var(--transition-fast);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-coral);
}

/* 3. Header & Navigation Menu (Glassmorphism Light) */
.header-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition-normal);
  background: transparent;
  border-bottom: 1px solid transparent;
}

.header-container.scrolled {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}

.top-bar {
  background: rgba(8, 3, 55, 0.03);
  padding: 8px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  border-bottom: 1px solid var(--color-border);
}

.top-bar-left {
  display: flex;
  gap: 20px;
  color: var(--color-text-secondary);
}

.top-bar-right {
  color: var(--color-coral);
  font-weight: 600;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 5%;
  height: 80px;
}

.logo img {
  height: 50px;
  object-fit: contain;
  transition: var(--transition-normal);
}

/* Scrolled Logo brightness adjustment */
.header-container.scrolled #header-logo {
  filter: none;
}

.nav-links {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 30px;
}

.nav-item {
  position: relative;
}

.nav-link {
  font-weight: 500;
  font-size: 0.95rem;
  padding: 10px 0;
  color: var(--color-deep-navy);
  display: flex;
  align-items: center;
  gap: 6px;
}

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

/* Nav Link Underline Hover Effect */
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-coral);
  transition: var(--transition-fast);
}

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

/* Dropdown Menu styling (Bright Glass) */
.dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--color-white);
  min-width: 260px;
  border-radius: 8px;
  padding: 15px 0;
  opacity: 0;
  visibility: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 100;
}

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

.dropdown-item {
  padding: 10px 25px;
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  display: block;
  transition: var(--transition-fast);
}

.dropdown-item:hover {
  background: rgba(255, 97, 60, 0.05);
  color: var(--color-coral);
  padding-left: 30px;
}

/* Header Action Buttons */
.header-cta {
  background: var(--color-coral);
  color: var(--color-white);
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: var(--shadow-sm);
  border: 2px solid transparent;
}

.header-cta:hover {
  background: transparent;
  color: var(--color-coral);
  border-color: var(--color-coral);
  box-shadow: var(--glow-coral);
}

/* Hamburger menu for mobile */
.hamburger {
  display: none;
  cursor: pointer;
  background: none;
  border: none;
  outline: none;
  z-index: 1010;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--color-deep-navy);
  margin: 5px 0;
  transition: var(--transition-fast);
}

/* 4. Mobile Sliding Drawer (Bright) */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  height: 100vh;
  background: var(--color-white);
  z-index: 1005;
  box-shadow: var(--shadow-lg);
  padding: 80px 40px 40px 40px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  transition: var(--transition-normal);
  border-left: 1px solid var(--color-border);
}

.mobile-drawer.open {
  right: 0;
}

.mobile-drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(8, 3, 55, 0.4);
  backdrop-filter: blur(4px);
  z-index: 1004;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-fast);
}

.mobile-drawer-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-link {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--color-deep-navy);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-submenu {
  list-style: none;
  padding-left: 15px;
  margin-top: 10px;
  display: none;
  flex-direction: column;
  gap: 10px;
  border-left: 2px solid var(--color-coral);
}

.mobile-submenu-link {
  font-size: 0.95rem;
  color: var(--color-text-secondary);
}

/* 5. Hero Carousel & Sliders */
.hero-slider {
  position: relative;
  height: 100vh;
  min-height: 650px;
  width: 100vw;
  overflow: hidden;
  background: var(--color-light-bg);
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity var(--transition-slow) ease-in-out;
  display: flex;
  align-items: center;
  z-index: 1;
  padding: 0 10%;
}

.slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.96) 25%, rgba(255, 255, 255, 0.75) 55%, rgba(255, 255, 255, 0.15) 100%);
  z-index: 2;
}

.slide.active {
  opacity: 1;
  z-index: 2;
}

/* Slide backgrounds with original scale properties and subtle animation */
.slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 1;
  filter: brightness(0.95) contrast(1.02);
  transform: scale(1.1);
  transition: transform 6s ease-out;
}

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

.slide-content {
  max-width: 800px;
  transform: translateY(40px);
  opacity: 0;
  transition: all 0.8s var(--transition-normal);
  position: relative;
  z-index: 5;
}

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

.slide-tag {
  color: var(--color-coral);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 15px;
  display: inline-block;
  position: relative;
}

.slide-tag::before {
  content: '';
  position: absolute;
  left: -25px;
  top: 50%;
  transform: translateY(-50%);
  width: 15px;
  height: 2px;
  background: var(--color-coral);
}

.slide-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 25px;
  color: var(--color-deep-navy);
  text-transform: uppercase;
}

.slide-desc {
  font-size: 1.15rem;
  color: var(--color-text-secondary);
  margin-bottom: 35px;
  max-width: 600px;
  font-weight: 500;
  line-height: 1.7;
}

/* Slider buttons styling */
.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--color-coral);
  color: var(--color-white);
  padding: 15px 35px;
  border-radius: 50px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
  box-shadow: var(--shadow-sm);
  border: 2px solid transparent;
}

.hero-btn:hover {
  background: var(--color-coral-dark);
  box-shadow: var(--glow-coral);
}

.hero-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--color-white);
  color: var(--color-slate-blue);
  padding: 15px 35px;
  border-radius: 50px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
  border: 2px solid var(--color-slate-blue);
  margin-left: 15px;
  box-shadow: var(--shadow-sm);
}

.hero-btn-outline:hover {
  background: var(--color-slate-blue);
  color: var(--color-white);
  border-color: var(--color-slate-blue);
}

/* Slider Controls */
.slider-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(8, 3, 55, 0.05);
  border: 1px solid rgba(8, 3, 55, 0.1);
  color: var(--color-deep-navy);
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
}

.slider-control:hover {
  background: var(--color-coral);
  border-color: var(--color-coral);
  color: var(--color-white);
  box-shadow: var(--glow-coral);
}

.slider-prev {
  left: 3%;
}

.slider-next {
  right: 3%;
}

/* Dots navigation indicator */
.slider-dots {
  position: absolute;
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(8, 3, 55, 0.15);
  cursor: pointer;
  transition: var(--transition-fast);
}

.slider-dot.active {
  background: var(--color-coral);
  transform: scale(1.3);
}

/* 6. Page General Sections & Headers */
.section-padding {
  padding: 100px 10%;
}

.section-title-wrapper {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px auto;
}

.section-tag {
  color: var(--color-coral);
  font-size: 0.9rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--color-deep-navy);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--color-text-secondary);
}

/* Subtle Divider Line below headings */
.accent-line {
  width: 80px;
  height: 3px;
  background-color: var(--color-coral);
  margin: 15px auto;
  border-radius: 50px;
}

.accent-line.left {
  margin: 15px 0;
}

/* Generic subpage hero banner */
.subpage-banner {
  height: 400px;
  position: relative;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding: 0 10%;
  overflow: hidden;
}

.subpage-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.6) 100%);
  z-index: 1;
}

.subpage-banner-content {
  position: relative;
  z-index: 2;
  margin-top: 80px;
}

.subpage-title {
  font-size: 3.5rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--color-deep-navy);
}

.breadcrumbs {
  margin-top: 15px;
  font-size: 0.95rem;
  color: var(--color-text-secondary);
}

.breadcrumbs a {
  color: var(--color-deep-navy);
  font-weight: 600;
}

.breadcrumbs span {
  color: var(--color-coral);
  margin: 0 8px;
}

/* 7. Why Us Section (Bright Background) */
.why-us-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.why-us-card {
  background: var(--color-card-bg);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 35px 25px;
  text-align: center;
  transition: all 0.4s var(--transition-normal);
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  box-shadow: var(--shadow-sm);
}

.why-us-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 97, 60, 0.25);
  box-shadow: 0 20px 35px rgba(8, 3, 55, 0.06);
  background: var(--color-white);
}

.why-us-icon-wrapper {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255, 97, 60, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  transition: var(--transition-normal);
}

.why-us-card:hover .why-us-icon-wrapper {
  background: var(--color-coral);
  transform: rotateY(180deg) scale(1.05);
  box-shadow: 0 4px 15px rgba(255, 97, 60, 0.25);
}

.why-us-icon-wrapper i {
  font-size: 2rem;
  color: var(--color-coral);
  transition: var(--transition-normal);
}

.why-us-card:hover .why-us-icon-wrapper i {
  color: var(--color-white);
}

.why-us-card h3 {
  font-size: 1.25rem;
  margin-bottom: 15px;
  font-weight: 700;
  color: var(--color-deep-navy);
}

.why-us-card p {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  line-height: 1.5;
}

/* 8. What We Offer Section (Light Soft BG) */
.offerings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

.offering-card {
  background: var(--color-card-bg);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s var(--transition-normal);
  box-shadow: var(--shadow-sm);
}

.offering-card:hover {
  transform: translateY(-8px);
  border-color: var(--color-coral);
  box-shadow: var(--shadow-lg);
}

.offering-img-wrapper {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.offering-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.offering-card:hover .offering-img-wrapper img {
  transform: scale(1.1);
}

.offering-img-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent 35%, rgba(8, 3, 55, 0.4) 100%);
}

.offering-body {
  padding: 35px 30px;
}

.offering-body h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  text-transform: uppercase;
  color: var(--color-deep-navy);
}

.offering-body p {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  margin-bottom: 25px;
  min-height: 48px;
}

.offering-body .read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-coral);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1px;
}

.offering-body .read-more i {
  transition: transform var(--transition-fast);
}

.offering-card:hover .read-more i {
  transform: translateX(5px);
}

/* 9. About Company Split Section */
.about-company-section {
  display: flex;
  gap: 60px;
  align-items: center;
}

.about-company-left {
  flex: 1.2;
}

.about-company-right {
  flex: 0.8;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.about-company-right::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--color-coral);
}

.about-company-desc {
  font-size: 1.1rem;
  color: var(--color-text-secondary);
  margin-bottom: 30px;
}

.hotline-widget {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
}

.hotline-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 97, 60, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-coral);
  font-size: 1.5rem;
}

.hotline-text h5 {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hotline-text p {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-deep-navy);
  font-family: var(--font-heading);
}

/* 10. Our Product Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.product-card {
  background: var(--color-card-bg);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 30px 20px;
  text-align: center;
  transition: all 0.4s var(--transition-normal);
  position: relative;
  box-shadow: var(--shadow-sm);
}

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

.product-icon {
  width: 70px;
  height: 70px;
  background: rgba(8, 3, 55, 0.02);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
  border: 1px solid var(--color-border);
}

.product-icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.product-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  text-transform: uppercase;
  color: var(--color-deep-navy);
}

/* 11. About Page Extra Sections (Values & 9 Tech Offerings) */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-top: 50px;
}

.value-card {
  background: var(--color-card-bg);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 35px 25px;
  transition: all 0.4s var(--transition-normal);
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.value-card:hover {
  background: var(--color-white);
  border-color: var(--color-coral);
  transform: scale(1.03);
  box-shadow: var(--shadow-lg);
}

.value-badge {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: rgba(255, 97, 60, 0.15);
  margin-bottom: 10px;
  transition: var(--transition-fast);
}

.value-card:hover .value-badge {
  color: var(--color-coral);
}

.value-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  text-transform: uppercase;
  color: var(--color-deep-navy);
}

.value-card p {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
}

.tech-offerings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.tech-offering-card {
  background: var(--color-card-bg);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 40px 30px;
  position: relative;
  transition: all 0.4s var(--transition-normal);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.tech-offering-card:hover {
  transform: translateY(-8px);
  border-color: var(--color-coral);
  box-shadow: var(--shadow-lg);
  background: var(--color-white);
}

.tech-offering-card::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 0 40px 40px 0;
  border-color: transparent var(--color-coral) transparent transparent;
  opacity: 0;
  transition: var(--transition-fast);
}

.tech-offering-card:hover::after {
  opacity: 1;
}

.tech-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: rgba(8, 3, 55, 0.03);
  position: absolute;
  top: 10px;
  right: 20px;
  transition: var(--transition-fast);
}

.tech-offering-card:hover .tech-number {
  color: rgba(255, 97, 60, 0.08);
}

.tech-offering-card h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 10px;
  color: var(--color-deep-navy);
}

.tech-offering-card h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--color-coral);
  transition: var(--transition-normal);
}

.tech-offering-card:hover h3::after {
  width: 80px;
}

.tech-offering-card p {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
}

/* 12. Contact Page Elements & Form (Light Mode Polish) */
.contact-section-wrapper {
  display: flex;
  gap: 50px;
}

.contact-info-column {
  flex: 0.8;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.contact-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 30px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: var(--transition-normal);
  box-shadow: var(--shadow-sm);
}

.contact-card:hover {
  border-color: var(--color-coral);
  box-shadow: var(--shadow-md);
  transform: translateX(5px);
}

.contact-card-icon {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: rgba(255, 97, 60, 0.08);
  color: var(--color-coral);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.contact-card-details h3 {
  font-size: 1.1rem;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: var(--color-deep-navy);
}

.contact-card-details p, .contact-card-details a {
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  line-height: 1.5;
}

.contact-form-column {
  flex: 1.2;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 45px;
  box-shadow: var(--shadow-md);
}

.form-group-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  margin-bottom: 25px;
}

.form-group {
  margin-bottom: 25px;
  position: relative;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-deep-navy);
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.form-control {
  width: 100%;
  background: #f4f6fa;
  border: 1px solid rgba(8, 3, 55, 0.08);
  border-radius: 12px;
  padding: 16px 20px;
  font-family: var(--font-body);
  color: var(--color-deep-navy);
  font-size: 0.95rem;
  font-weight: 500;
  transition: var(--transition-fast);
  outline: none;
}

.form-control::placeholder {
  color: var(--color-text-muted);
  opacity: 0.8;
}

.form-control:focus {
  border-color: #1d72b8;
  background: var(--color-white);
  box-shadow: 0 0 10px rgba(29, 114, 184, 0.12);
}

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

/* Custom Select Dropdown Chevron Up/Down */
.select-wrapper {
  position: relative;
  width: 100%;
}

.select-wrapper select.form-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M3 4.5L6 1.5L9 4.5' stroke='%23396680' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M3 7.5L6 10.5L9 7.5' stroke='%23396680' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 20px center;
  background-size: 12px;
  padding-right: 45px;
  cursor: pointer;
}

/* Working Form Button & Premium Overhaul */
.submit-btn {
  background: var(--color-coral);
  color: var(--color-white);
  border: none;
  border-radius: 50px;
  padding: 16px 40px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition-normal);
}

.submit-btn:hover {
  background: var(--color-coral-dark);
  box-shadow: var(--glow-coral);
  transform: translateY(-2px);
}

.submit-btn:disabled {
  background: var(--color-slate-blue-light) !important;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}

/* Premium Blue-to-Bronze Gradient Button Class */
.premium-gradient-btn {
  width: 100%;
  background: linear-gradient(90deg, #1d72b8 0%, #d89f3b 100%) !important;
  color: var(--color-white) !important;
  border: none !important;
  border-radius: 12px !important;
  padding: 18px 40px !important;
  font-family: var(--font-heading) !important;
  font-weight: 700 !important;
  font-size: 1.05rem !important;
  letter-spacing: 0.5px !important;
  cursor: pointer !important;
  box-shadow: 0 4px 15px rgba(29, 114, 184, 0.2) !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  text-transform: none !important;
}

.premium-gradient-btn:hover {
  background: linear-gradient(90deg, #237fc9 0%, #e2a845 100%) !important;
  box-shadow: 0 6px 20px rgba(29, 114, 184, 0.3), 0 0 0 3px rgba(29, 114, 184, 0.15) !important;
  transform: translateY(-2px) !important;
}

.premium-gradient-btn:active {
  transform: translateY(1px) !important;
}

/* Toast Notifications styling for AJAX */
.toast-container {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.toast {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-left: 5px solid var(--color-coral);
  border-radius: 8px;
  padding: 20px 25px;
  min-width: 320px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 15px;
  transform: translateX(120%);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.toast.show {
  transform: translateX(0);
}

.toast-success {
  border-left-color: #2ec4b6;
}

.toast-error {
  border-left-color: #e71d36;
}

.toast-icon {
  font-size: 1.5rem;
}

.toast-success .toast-icon { color: #2ec4b6; }
.toast-error .toast-icon { color: #e71d36; }

.toast-text h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 2px;
  color: var(--color-deep-navy);
}

.toast-text p {
  font-size: 0.85rem;
  color: var(--color-text-secondary);
}

/* Google Map Container */
.map-container {
  width: 100%;
  height: 450px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  margin-top: 60px;
  box-shadow: var(--shadow-md);
}

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

/* 13. Footer Section (Kept Dark Deep Navy for elegant contrast & grounding) */
.footer {
  background: var(--color-deep-navy-dark);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 80px 10% 30px 10%;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-logo {
  height: 55px;
  object-fit: contain;
  margin-bottom: 25px;
}

.footer-desc {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 25px;
  line-height: 1.6;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  transition: var(--transition-fast);
}

.social-link:hover {
  background: var(--color-coral);
  border-color: var(--color-coral);
  color: var(--color-white);
  box-shadow: var(--glow-coral);
  transform: translateY(-3px);
}

.footer-column h3 {
  font-size: 1.2rem;
  margin-bottom: 25px;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 12px;
  color: var(--color-white);
}

.footer-column h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--color-coral);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-link:hover {
  color: var(--color-coral-light);
  padding-left: 5px;
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.footer-contact-icon {
  color: var(--color-coral-light);
  font-size: 1.1rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-contact-text p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.5;
}

/* Newsletter Input field */
.newsletter-form {
  display: flex;
  margin-top: 15px;
  border-radius: 50px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
}

.newsletter-input {
  flex: 1;
  background: rgba(255, 255, 255, 0.03);
  border: none;
  padding: 14px 20px;
  font-family: var(--font-body);
  color: var(--color-white);
  outline: none;
}

.newsletter-btn {
  background: var(--color-coral);
  border: none;
  color: var(--color-white);
  padding: 0 25px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition-fast);
}

.newsletter-btn:hover {
  background: var(--color-coral-dark);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 30px;
  margin-top: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

/* 14. Responsive Layout Adjustments & Media Queries (WOW standard mobile layout) */
@media (max-width: 1200px) {
  .section-padding {
    padding: 80px 6%;
  }
  .why-us-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
  }
  .slide-title {
    font-size: 2.75rem;
  }
}

@media (max-width: 991px) {
  .top-bar {
    display: none;
  }
  .nav-links, .header-cta {
    display: none;
  }
  .hamburger {
    display: block;
  }
  .about-company-section {
    flex-direction: column;
    gap: 40px;
  }
  .offerings-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .tech-offerings-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-section-wrapper {
    flex-direction: column-reverse;
    gap: 50px;
  }
}

@media (max-width: 768px) {
  .section-padding {
    padding: 60px 4%;
  }
  .section-title {
    font-size: 2.2rem;
  }
  .slide-title {
    font-size: 2rem;
  }
  .slide-desc {
    font-size: 1rem;
  }
  .hero-btn-outline {
    margin-left: 0;
    margin-top: 15px;
  }
  .why-us-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .offerings-grid {
    grid-template-columns: 1fr;
  }
  .values-grid {
    grid-template-columns: 1fr;
  }
  .tech-offerings-grid {
    grid-template-columns: 1fr;
  }
  .form-group-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .form-group-row .form-group {
    margin-bottom: 25px;
  }
  .contact-form-column {
    padding: 30px 20px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  .slider-control {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 480px) {
  .why-us-grid {
    grid-template-columns: 1fr;
  }
  .products-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .subpage-title {
    font-size: 2.2rem;
  }
}

/* 15. Intersection Observer Animation utilities (Sleek slide reveals) */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* 16. Premium Language Switcher Styling */
.lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(8, 3, 55, 0.05);
  padding: 5px 12px;
  border-radius: 30px;
  border: 1px solid rgba(8, 3, 55, 0.08);
  font-family: 'Kumbh Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  margin-right: 15px;
  transition: all 0.3s ease;
}

.lang-switcher .lang-btn {
  color: var(--color-text-secondary);
  text-decoration: none;
  padding: 2px 7px;
  border-radius: 20px;
  transition: all 0.2s ease;
}

.lang-switcher .lang-btn:hover {
  color: var(--color-coral);
}

.lang-switcher .lang-btn.active {
  color: var(--color-white);
  background: var(--color-coral);
}

.lang-switcher .lang-divider {
  color: var(--color-text-muted);
  font-weight: 300;
}

@media (max-width: 991px) {
  .lang-switcher {
    margin-right: 0;
  }
}
