/* ==========================================================================
   Ariham Argonics - Core Luxury Stylesheet
   Theme: Deep Navy Blue (#0B2545) & Metallic Gold (#D4AF37)
   ========================================================================== */

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

:root {
  /* Brand Color Palette derived from Ariham Logo */
  --navy-dark: #041026;
  --navy-main: #0B2545;
  --navy-light: #133968;
  --navy-soft: #1E4B82;
  --navy-gradient: linear-gradient(135deg, #041026 0%, #0B2545 60%, #133968 100%);
  
  --gold-primary: #D4AF37;
  --gold-secondary: #C5A059;
  --gold-light: #F4E296;
  --gold-dark: #A8841B;
  --gold-gradient: linear-gradient(135deg, #F4E296 0%, #D4AF37 50%, #A8841B 100%);

  --bg-light: #F8FAFC;
  --bg-card: #FFFFFF;
  --bg-dark-card: rgba(11, 37, 69, 0.7);

  --text-dark: #0F172A;
  --text-muted: #475569;
  --text-light: #F8FAFC;
  --text-gold: #D4AF37;

  --border-light: rgba(212, 175, 55, 0.2);
  --border-gold: rgba(212, 175, 55, 0.4);

  --shadow-sm: 0 4px 6px -1px rgba(11, 37, 69, 0.05);
  --shadow-md: 0 10px 25px -5px rgba(11, 37, 69, 0.1);
  --shadow-lg: 0 20px 35px -10px rgba(11, 37, 69, 0.18);
  --shadow-gold: 0 4px 15px rgba(11, 37, 69, 0.15);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  --transition-fast: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Base Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-dark);
  background-color: var(--bg-light);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  color: var(--navy-main);
  line-height: 1.25;
}

.heading-serif {
  font-family: 'Cinzel', serif;
}

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

ul {
  list-style: none;
}

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

/* Container */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Helper Gradient Text */
.text-gold-gradient {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-navy {
  color: var(--navy-main);
}

/* Custom Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1.4rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.92rem;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition-normal);
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
  z-index: 1;
  text-decoration: none;
  white-space: nowrap;
}

.btn-gold {
  background: var(--gold-gradient);
  color: var(--navy-dark);
  box-shadow: var(--shadow-gold);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.btn-gold:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.btn-navy {
  background: var(--navy-main);
  color: var(--text-light);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
}

.btn-navy:hover {
  background: var(--navy-light);
  color: var(--gold-light);
  transform: translateY(-3px);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold-primary);
  border: 1.5px solid var(--gold-primary);
}

.btn-outline-gold:hover {
  background: var(--gold-gradient);
  color: var(--navy-dark);
  transform: translateY(-3px);
}

/* Section Header */
.section-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 3.5rem auto;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1.2rem;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  color: var(--gold-dark);
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

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

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
}

/* Header & Navbar */
.top-bar {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-info {
  display: flex;
  gap: 1.8rem;
}

.top-bar-info span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.top-bar-badges {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--gold-primary);
  font-weight: 500;
}

.navbar {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 1000;
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
  transition: var(--transition-normal);
}

.navbar.scrolled {
  background: rgba(4, 16, 38, 0.95);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.navbar.scrolled .nav-link {
  color: #E2E8F0;
}

.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active {
  color: var(--gold-primary);
}

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

.logo-container {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

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

.logo-container .logo-light-mode {
  display: none;
}

.navbar.scrolled .logo-container .logo-dark-mode {
  display: none;
}

.navbar.scrolled .logo-container .logo-light-mode {
  display: block;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--navy-main);
  position: relative;
  padding: 0.3rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--gold-gradient);
  transition: var(--transition-fast);
  border-radius: 2px;
}

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

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--navy-main);
  cursor: pointer;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 88vh;
  background: var(--navy-gradient);
  display: flex;
  align-items: center;
  padding: 5rem 0 6rem 0;
  color: var(--text-light);
  overflow: hidden;
}

.hero-glow-1 {
  position: absolute;
  top: -10%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, rgba(0, 0, 0, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-glow-2 {
  position: absolute;
  bottom: -20%;
  right: -10%;
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, rgba(19, 57, 104, 0.5) 0%, rgba(0, 0, 0, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-content {
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.4rem 1.2rem;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-full);
  color: var(--gold-light);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(8px);
}

.hero-title {
  font-size: 3.4rem;
  color: #FFFFFF;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  letter-spacing: -0.5px;
}

.hero-description {
  font-size: 1.15rem;
  color: #CBD5E1;
  margin-bottom: 2.2rem;
  max-width: 90%;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.stat-item h3 {
  font-size: 2rem;
  color: var(--gold-primary);
  margin-bottom: 0.2rem;
}

.stat-item p {
  font-size: 0.85rem;
  color: #94A3B8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-visual {
  position: relative;
  z-index: 2;
}

.hero-card-stack {
  position: relative;
  width: 100%;
  height: 480px;
}

.hero-main-card {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  height: 380px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  border: 1px solid var(--border-glow);
}

.hero-main-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(4, 16, 38, 0.85) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
}

.hero-floating-badge {
  position: absolute;
  background: #FFFFFF;
  border: 1.5px solid var(--gold-primary);
  padding: 0.9rem 1.4rem;
  border-radius: var(--radius-md);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
  display: flex;
  align-items: center;
  gap: 0.9rem;
  z-index: 5;
}

.badge-top-right {
  top: 15px;
  right: -10px;
}

.badge-bottom-left {
  bottom: 20px;
  left: -20px;
}

.floating-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gold-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-dark);
  font-size: 1.2rem;
  font-weight: 700;
}

/* Trust Bar */
.trust-bar {
  background: #FFFFFF;
  padding: 2.2rem 0;
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

.trust-flex {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.trust-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(212, 175, 55, 0.12);
  color: var(--gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.trust-text h4 {
  font-size: 1rem;
  color: var(--navy-main);
}

.trust-text p {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* Products Section */
.products-section {
  padding: 6rem 0;
  background-color: var(--bg-light);
}

.category-tabs {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.tab-btn {
  padding: 0.75rem 1.6rem;
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: var(--radius-full);
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition-fast);
}

.tab-btn:hover {
  border-color: var(--gold-primary);
  color: var(--navy-main);
}

.tab-btn.active {
  background: var(--navy-main);
  color: var(--gold-light);
  border-color: var(--navy-main);
  box-shadow: var(--shadow-md);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}

.product-card {
  background: #FFFFFF;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid #E2E8F0;
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  position: relative;
}

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

.product-thumb {
  position: relative;
  height: 220px;
  overflow: hidden;
}

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

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

.product-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(4, 16, 38, 0.85);
  color: var(--gold-light);
  backdrop-filter: blur(8px);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.product-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-sub-badge {
  display: none;
}

.product-title {
  font-size: 1.25rem;
  color: var(--navy-main);
  margin-bottom: 0.5rem;
}

.product-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
  flex-grow: 1;
}

.product-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 0.8rem;
  border-top: 1px solid #F1F5F9;
  margin-bottom: 1.2rem;
  font-size: 0.82rem;
  color: #64748B;
}

.product-meta strong {
  color: var(--gold-dark);
}

.product-actions {
  display: flex;
  gap: 0.5rem;
  margin-top: auto;
}

.product-actions .btn {
  flex: 1;
  padding: 0.55rem 0.6rem;
  font-size: 0.8rem;
  border-radius: var(--radius-sm);
  white-space: nowrap;
}

/* About & Traceability Section */
.about-section {
  padding: 6rem 0;
  background: #FFFFFF;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image-wrapper {
  position: relative;
}

.about-main-img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
}

.founder-image {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
}

.about-experience-card {
  position: absolute;
  bottom: -30px;
  right: -20px;
  background: var(--navy-main);
  color: #FFFFFF;
  padding: 1.8rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-glow);
  text-align: center;
}

.about-experience-card h3 {
  font-size: 2.4rem;
  color: var(--gold-primary);
}

.about-experience-card p {
  font-size: 0.85rem;
  color: #CBD5E1;
}

.about-content h2 {
  font-size: 2.4rem;
  margin-bottom: 1.2rem;
}

.about-lead {
  font-size: 1.1rem;
  color: var(--navy-light);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.founder-values {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.founder-value {
  display: grid;
  gap: 0.7rem;
  padding: 1rem;
  background: var(--bg-light);
  border: 1px solid rgba(11, 37, 69, 0.08);
  border-top: 3px solid var(--gold-primary);
  border-radius: var(--radius-sm);
  color: var(--navy-main);
}

.founder-value-copy {
  display: grid;
  gap: 0.35rem;
  min-width: 0;
}

.founder-value strong {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
}

.founder-value span {
  display: block;
  color: var(--text-muted);
  font-size: 0.76rem;
  line-height: 1.45;
}

.founder-value i {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.15);
  color: var(--gold-dark);
}

.founder-value:hover {
  border-color: var(--gold-primary);
  transform: translateY(-2px);
  transition: var(--transition-fast);
}

.founder-value:hover i {
  background: var(--gold-primary);
  color: var(--navy-dark);
}

@media (max-width: 900px) {
  .founder-values {
    grid-template-columns: 1fr;
  }
}

.process-heading {
  color: var(--navy-main);
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.process-steps {
  margin-top: 2rem;
  display: grid;
  gap: 1.2rem;
}

.process-step {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: var(--bg-light);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--gold-primary);
}

.step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--navy-main);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.step-text h4 {
  font-size: 1rem;
  margin-bottom: 0.2rem;
}

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

/* Why Choose Us Section */
.why-section {
  padding: 6rem 0;
  background: #F8FAFC;
  color: var(--text-dark);
  position: relative;
}

.why-section .section-title {
  color: var(--navy-main);
}

.why-section .section-subtitle {
  color: #475569;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.why-card {
  background: #FFFFFF;
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-top: 4px solid var(--gold-primary);
  padding: 2.4rem 1.8rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition: var(--transition-normal);
}

.why-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-primary);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.why-card h3 {
  color: var(--navy-main);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.why-card p {
  color: #475569;
  font-size: 0.92rem;
  line-height: 1.6;
}

.why-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: var(--navy-main);
  color: var(--gold-primary);
  border: 1px solid rgba(212, 175, 55, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.4rem;
  transition: var(--transition-normal);
}

.why-card:hover .why-icon {
  background: var(--gold-primary);
  color: var(--navy-main);
  border-color: var(--gold-primary);
  transform: scale(1.05);
}

/* Global Reach Map Section */
.reach-section {
  padding: 6rem 0;
  background: #FFFFFF;
  text-align: center;
}

.map-box {
  background: var(--navy-main);
  border-radius: var(--radius-lg);
  padding: 3rem;
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.map-svg-bg {
  position: absolute;
  inset: 0;
  opacity: 0.15;
  background-image: radial-gradient(circle, var(--gold-primary) 1px, transparent 1px);
  background-size: 24px 24px;
}

.reach-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  position: relative;
  z-index: 2;
}

.reach-item h2 {
  font-size: 3rem;
  color: var(--gold-primary);
  margin-bottom: 0.4rem;
}

.reach-item p {
  font-size: 0.95rem;
  color: #E2E8F0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Contact / Quote Form Section */
.contact-section {
  padding: 6rem 0;
  background: var(--bg-light);
}

.contact-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 30px rgba(11, 37, 69, 0.08);
  border: 1px solid #E2E8F0;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  max-width: 1060px;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
}

.contact-info-side {
  background: var(--navy-gradient);
  padding: 2.5rem 2rem;
  color: #FFFFFF;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-info-side h3 {
  color: #FFFFFF;
  font-size: 1.5rem;
  margin-bottom: 0.6rem;
  line-height: 1.3;
}

.contact-info-side p {
  color: #CBD5E1;
  font-size: 0.88rem;
  margin-bottom: 1.2rem;
  line-height: 1.5;
}

.info-details {
  display: grid;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.info-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.15);
  color: var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-form-side {
  padding: 2.2rem 2rem;
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.form-title {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--navy-main);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem 1rem;
  width: 100%;
  box-sizing: border-box;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  min-width: 0;
  width: 100%;
  box-sizing: border-box;
}

.form-group.full-width {
  grid-column: span 2;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy-main);
}

.form-control {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding: 0.65rem 0.9rem;
  border: 1px solid #CBD5E1;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.88rem;
  color: var(--text-dark);
  background-color: #FFFFFF;
  transition: var(--transition-fast);
}

select.form-control {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%230B2545' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.85rem center;
  background-size: 12px;
  padding-right: 2.2rem;
  text-overflow: ellipsis;
  white-space: nowrap;
  cursor: pointer;
}

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

.form-control:focus {
  outline: none;
  border-color: var(--gold-primary);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

/* Modal Popup */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(4, 16, 38, 0.75);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-normal);
}

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

.modal-box {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  max-width: 600px;
  width: 90%;
  padding: 2.5rem;
  position: relative;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
  transform: translateY(20px);
  transition: var(--transition-normal);
}

.modal-overlay.active .modal-box {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-muted);
  cursor: pointer;
}

/* Footer */
.footer {
  background: var(--navy-dark);
  color: #CBD5E1;
  padding: 2.5rem 0 1rem 0;
  border-top: 3px solid var(--gold-primary);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: clamp(3rem, 6vw, 6rem);
  row-gap: 2.5rem;
  margin-bottom: 2rem;
}

.footer-logo {
  height: 56px;
  width: auto;
  object-fit: contain;
  margin-bottom: 1.2rem;
  transition: var(--transition-normal);
}

.footer-col h4 {
  color: #FFFFFF;
  font-size: 1.2rem;
  margin-bottom: 1.4rem;
  position: relative;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 35px;
  height: 2px;
  background: var(--gold-gradient);
}

.footer-col p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

/* Real Brand Color Social Media Badges */
.footer-socials {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: 1.2rem;
}

.social-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  text-decoration: none;
  transition: var(--transition-normal);
  border: 1px solid transparent;
}

/* LinkedIn */
.social-icon.linkedin {
  background: rgba(10, 102, 194, 0.18);
  color: #0A66C2;
  border-color: rgba(10, 102, 194, 0.4);
}
.social-icon.linkedin:hover {
  background: #0A66C2;
  color: #FFFFFF;
  border-color: #0A66C2;
  transform: translateY(-4px);
}

/* WhatsApp */
.social-icon.whatsapp {
  background: rgba(37, 211, 102, 0.18);
  color: #25D366;
  border-color: rgba(37, 211, 102, 0.4);
}
.social-icon.whatsapp:hover {
  background: #25D366;
  color: #FFFFFF;
  border-color: #25D366;
  transform: translateY(-4px);
}

/* Facebook */
.social-icon.facebook {
  background: rgba(24, 119, 242, 0.18);
  color: #1877F2;
  border-color: rgba(24, 119, 242, 0.4);
}
.social-icon.facebook:hover {
  background: #1877F2;
  color: #FFFFFF;
  border-color: #1877F2;
  transform: translateY(-4px);
}

/* Instagram */
.social-icon.instagram {
  background: rgba(228, 64, 95, 0.18);
  color: #E4405F;
  border-color: rgba(228, 64, 95, 0.4);
}
.social-icon.instagram:hover {
  background: linear-gradient(45deg, #F09433 0%, #E6683C 25%, #DC2743 50%, #CC2366 75%, #BC1888 100%);
  color: #FFFFFF;
  border-color: transparent;
  transform: translateY(-4px);
}

.footer-links {
  display: grid;
  gap: 0.7rem;
}

.footer-links a {
  font-size: 0.9rem;
  color: #94A3B8;
}

.footer-links a:hover {
  color: var(--gold-primary);
  padding-left: 5px;
}

.footer-bottom {
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: #64748B;
}

.footer-credit {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.footer-credit a {
  color: #94A3B8;
}

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

/* Subpage Hero Banners */
.page-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-main) 100%);
  padding: 4.5rem 0 3.5rem 0;
  position: relative;
  overflow: hidden;
  border-bottom: 3px solid var(--gold-primary);
}

.page-hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.page-hero-title {
  font-size: 2.8rem;
  color: #FFFFFF;
  margin-top: 0.6rem;
  margin-bottom: 1rem;
}

.page-hero-subtitle {
  font-size: 1.1rem;
  color: #CBD5E1;
  line-height: 1.6;
}

.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: var(--gold-light);
  font-weight: 500;
  background: rgba(255, 255, 255, 0.06);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(212, 175, 55, 0.25);
}

.breadcrumb a {
  color: #FFFFFF;
  transition: var(--transition-fast);
}

.breadcrumb a:hover {
  color: var(--gold-primary);
}

/* Light Background Certification & Feature Cards */
.cert-card {
  background: #FFFFFF;
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-top: 4px solid var(--gold-primary);
  border-radius: var(--radius-lg);
  padding: 2.4rem 1.8rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.cert-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-primary);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.cert-card .cert-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: var(--navy-main);
  color: var(--gold-primary);
  border: 1px solid rgba(212, 175, 55, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 1.4rem auto;
  transition: var(--transition-normal);
}

.cert-card:hover .cert-icon {
  background: var(--gold-primary);
  color: var(--navy-main);
  border-color: var(--gold-primary);
  transform: scale(1.05);
}

.cert-card h3 {
  font-size: 1.25rem;
  color: var(--navy-main);
  margin-bottom: 0.7rem;
  font-weight: 700;
}

.cert-card p {
  font-size: 0.92rem;
  color: #475569;
  line-height: 1.6;
}

/* Floating CTA Banner Section */
.cta-banner-section {
  background: #F8FAFC;
  padding: 4.5rem 0;
  position: relative;
}

.cta-floating-card {
  background: var(--navy-main);
  border-radius: 20px;
  padding: 3.5rem 2.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--gold-primary);
  box-shadow: 0 15px 35px rgba(11, 37, 69, 0.12);
}

.cta-floating-card h2 {
  color: #FFFFFF;
  font-size: 2.3rem;
  margin-bottom: 1rem;
  font-weight: 700;
  position: relative;
  z-index: 2;
}

.cta-floating-card p {
  color: #CBD5E1;
  max-width: 680px;
  margin: 0 auto 2.2rem auto;
  font-size: 1.08rem;
  line-height: 1.6;
  position: relative;
  z-index: 2;
}

.cta-floating-card .btn {
  position: relative;
  z-index: 2;
}

/* Product Detail Page Styling */
.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: start;
  width: 100%;
  max-width: 100%;
}

.product-detail-grid > * {
  min-width: 0;
}

.product-gallery-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: 0 10px 30px rgba(11, 37, 69, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.08);
  position: relative;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.product-gallery-img {
  width: 100%;
  max-width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.product-spec-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.92rem;
}

.product-spec-table th,
.product-spec-table td {
  padding: 0.85rem 1rem;
  text-align: left;
  border-bottom: 1px solid #E2E8F0;
}

.product-spec-table th {
  background: #F1F5F9;
  color: var(--navy-main);
  font-weight: 700;
  width: 38%;
}

.product-spec-table td {
  color: #334155;
  font-weight: 500;
}

.subproduct-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}

.subproduct-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-top: 4px solid var(--gold-primary);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.subproduct-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  border-color: var(--gold-primary);
}

.subproduct-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.subproduct-body {
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.subproduct-body h3 {
  font-size: 1.2rem;
  color: var(--navy-main);
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.subproduct-body p {
  color: #475569;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1.2rem;
  flex-grow: 1;
}

.tech-badge-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.2rem;
}

.tech-badge {
  background: #F1F5F9;
  color: var(--navy-main);
  padding: 0.25rem 0.65rem;
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  border: 1px solid #E2E8F0;
}

/* Responsive Media Queries */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-description {
    margin: 0 auto 2.2rem auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

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

  .product-detail-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem;
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .product-detail-grid > * {
    min-width: 0;
    max-width: 100%;
  }

  .product-gallery-card {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .product-gallery-img {
    height: 360px;
    width: 100%;
    max-width: 100%;
  }

  .product-spec-table {
    width: 100%;
    max-width: 100%;
    table-layout: fixed;
  }

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

@media (max-width: 768px) {
  .top-bar {
    display: none;
  }

  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: var(--navy-dark);
    flex-direction: column;
    padding: 3rem 2rem;
    transition: var(--transition-normal);
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-link {
    color: #FFFFFF;
    font-size: 1.2rem;
  }

  .mobile-toggle {
    display: block;
  }

  .hero-title {
    font-size: 2.4rem;
  }

  .product-gallery-card {
    padding: 1rem;
  }

  .product-gallery-img {
    height: 280px;
  }

  .product-detail-grid {
    gap: 1.5rem;
  }

  .product-spec-table {
    display: table;
    width: 100%;
    max-width: 100%;
    table-layout: fixed;
    overflow: visible;
  }

  .product-spec-table th,
  .product-spec-table td {
    white-space: normal;
    word-break: break-word;
    overflow-wrap: anywhere;
    min-width: 0;
  }

  .btn {
    white-space: normal;
    line-height: 1.3;
    text-align: center;
  }

  .product-actions {
    flex-direction: column;
  }

  .product-actions .btn {
    width: 100%;
    min-width: 0;
    white-space: normal;
    padding: 0.75rem 0.8rem;
  }

  .logo-img {
    height: 44px;
  }

  .footer-logo {
    height: 48px;
  }

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

  .form-grid {
    grid-template-columns: 1fr;
  }
  
  .form-group.full-width {
    grid-column: span 1;
  }
}

/* Floating Scroll to Top Button */
.scroll-top-btn {
  position: fixed;
  bottom: 2.2rem;
  right: 2.2rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: var(--navy-dark);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-normal);
  z-index: 1000;
}

.scroll-top-btn.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}
