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

/* CSS Reset & Variables */
:root {
  --primary-dark: #F8FAFC;
  --secondary-dark: #FFFFFF;
  --card-bg: #FFFFFF;
  --card-bg-hover: #FFFFFF;
  --accent-gold-light: #FAF5E6;
  --accent-gold: #C5A059;
  --accent-gold-dark: #9A793D;
  --gold-gradient: linear-gradient(135deg, #D4AF37 0%, #B89030 50%, #8A640F 100%);
  --gold-text-gradient: linear-gradient(135deg, #0F172A 30%, #C5A059 100%);
  --text-white: #0F172A;
  --text-platinum: #334155;
  --text-muted: #64748B;
  --border-color: rgba(15, 23, 42, 0.22);
  --border-hover: var(--accent-gold);
  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --shadow: 0 20px 40px -15px rgba(15, 23, 42, 0.06);
  --shadow-gold: 0 8px 30px rgba(197, 160, 89, 0.12);
  --font-ar: 'Cairo', sans-serif;
  --font-en: 'Outfit', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--primary-dark);
  color: var(--text-platinum);
  overflow-x: hidden;
  font-size: 16px;
  line-height: 1.6;
}

/* Language & Direction Handling */
html[lang="ar"] body {
  font-family: var(--font-ar);
  direction: rtl;
}

html[lang="en"] body {
  font-family: var(--font-en);
  direction: ltr;
}

/* Selection & Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--primary-dark);
}
::-webkit-scrollbar-thumb {
  background: var(--accent-gold-dark);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-gold);
}

::selection {
  background: var(--accent-gold);
  color: var(--primary-dark);
}

/* Typography & Layout Utilities */
h1, h2, h3, h4, h5, h6 {
  color: var(--text-white);
  font-weight: 700;
  line-height: 1.2;
}

p {
  color: var(--text-muted);
}

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

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

/* Glassmorphism Background Pattern */
.bg-glow {
  position: fixed;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(197, 160, 89, 0.12) 0%, rgba(248, 250, 252, 0) 70%);
  top: -100px;
  right: -100px;
  z-index: -1;
  pointer-events: none;
  animation: float-glow 20s infinite ease-in-out alternate;
}

.bg-glow-2 {
  position: fixed;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(30, 41, 59, 0.06) 0%, rgba(248, 250, 252, 0) 70%);
  bottom: -150px;
  left: -150px;
  z-index: -1;
  pointer-events: none;
  animation: float-glow 25s infinite ease-in-out alternate-reverse;
}

@keyframes float-glow {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(50px, 50px) scale(1.1); }
}

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(248, 250, 252, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(197, 160, 89, 0.06);
  transition: var(--transition);
}

header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow);
  border-bottom: 1px solid var(--border-color);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 90px;
  transition: var(--transition);
}

header.scrolled .nav-container {
  height: 70px;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-img {
  height: 48px;
  transition: var(--transition);
}

header.scrolled .logo-img {
  height: 38px;
}

.logo-text {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 1px;
}

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

.nav-link {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-platinum);
  position: relative;
  padding: 8px 0;
}

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

html[lang="ar"] .nav-link::after {
  right: 0;
  left: auto;
}

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

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.mobile-actions {
  display: none !important;
}

/* Glassmorphism Premium Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  gap: 8px;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--gold-gradient);
  color: #FFFFFF;
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(197, 160, 89, 0.25);
}

.btn-secondary {
  background: #FFFFFF;
  border: 1px solid rgba(197, 160, 89, 0.2);
  color: var(--text-platinum);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(197, 160, 89, 0.05);
  border-color: var(--accent-gold);
  color: var(--accent-gold-dark);
  transform: translateY(-2px);
}

.lang-switch {
  background: rgba(15, 23, 42, 0.04);
  border: 1px solid rgba(15, 23, 42, 0.08);
  color: var(--text-platinum);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.lang-switch:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
  background: rgba(197, 160, 89, 0.08);
}

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

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 140px;
  padding-bottom: 80px;
  position: relative;
}

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

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-badge {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 175, 55, 0.07);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 100px;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-gold);
  letter-spacing: 0.5px;
}

.hero-title {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.15;
}

.hero-desc {
  font-size: 18px;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  margin-top: 12px;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 480px;
  aspect-ratio: 1;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow);
  transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
  transition: var(--transition);
}

.hero-image-wrapper:hover {
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg) scale(1.02);
  border-color: var(--border-hover);
  box-shadow: 0 30px 60px -15px rgba(212, 175, 55, 0.15);
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.9);
}

.hero-glow-sphere {
  position: absolute;
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, rgba(0,0,0,0) 65%);
  z-index: -1;
  filter: blur(20px);
}

/* Stats Section */
.stats-section {
  padding: 40px 0;
  background: linear-gradient(180deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

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

.stat-card {
  background: #FFFFFF;
  border: 1px solid var(--border-color);
  padding: 30px 24px;
  border-radius: 20px;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow);
}

.stat-card:hover {
  background: var(--accent-gold-light);
  border-color: var(--border-hover);
  transform: translateY(-5px);
}

.stat-number {
  font-size: 38px;
  font-weight: 800;
  color: var(--accent-gold);
  display: block;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-platinum);
}

/* Section Common Layout */
.section {
  padding: 100px 0;
}

.section-bg-dark {
  background-color: var(--secondary-dark);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.section-subtitle {
  font-size: 14px;
  font-weight: 700;
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.section-title {
  font-size: 38px;
  font-weight: 800;
}

.section-desc {
  font-size: 16px;
}

/* About Us Section */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-img-box {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  aspect-ratio: 1.3;
}

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

.about-card-overlay {
  position: absolute;
  bottom: -30px;
  inset-inline-end: -30px;
  background: var(--card-bg);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 24px 30px;
  max-width: 280px;
  box-shadow: var(--shadow);
}

.about-card-title {
  color: var(--accent-gold);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 10px;
}

.about-feat-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.about-feat-icon {
  color: var(--accent-gold);
  font-size: 18px;
  margin-top: 4px;
}

.about-feat-title {
  font-weight: 600;
  color: var(--text-white);
  font-size: 15px;
  margin-bottom: 4px;
}

.about-feat-desc {
  font-size: 13px;
  line-height: 1.4;
}

/* Products Section */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.product-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  box-shadow: var(--shadow);
}

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

.product-img-box {
  width: 100%;
  height: 230px;
  overflow: hidden;
  position: relative;
}

.product-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

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

.product-badge {
  position: absolute;
  top: 16px;
  inset-inline-end: 16px;
  background: rgba(6, 6, 8, 0.85);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid var(--border-color);
  color: var(--accent-gold);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 50px;
}

.product-info {
  padding: 30px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-title {
  font-size: 22px;
  margin-bottom: 12px;
  transition: var(--transition);
}

.product-card:hover .product-title {
  color: var(--accent-gold);
}

.product-desc {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.product-specs {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: 24px;
}

.product-spec-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-platinum);
}

.product-spec-icon {
  color: var(--accent-gold);
  font-size: 14px;
}

.product-action {
  width: 100%;
}

/* Features Grid Section */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.feature-box {
  background: #FFFFFF;
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 40px 30px;
  transition: var(--transition);
  box-shadow: var(--shadow);
}

.feature-box:hover {
  background: var(--accent-gold-light);
  border-color: var(--border-hover);
  transform: translateY(-5px);
}

.feature-icon-wrapper {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--accent-gold);
  margin-bottom: 24px;
  transition: var(--transition);
}

.feature-box:hover .feature-icon-wrapper {
  background: var(--gold-gradient);
  color: var(--primary-dark);
  box-shadow: var(--shadow-gold);
}

.feature-title {
  font-size: 20px;
  margin-bottom: 12px;
}

.feature-desc {
  font-size: 14px;
  line-height: 1.6;
}

/* Quote Request Form Section */
.quote-section {
  position: relative;
  overflow: hidden;
}

.quote-container {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.quote-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.quote-info-title {
  font-size: 38px;
  font-weight: 800;
}

.quote-contacts {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 15px;
}

.quote-contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.quote-contact-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold);
  font-size: 18px;
}

.quote-contact-text span {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
}

.quote-contact-text a,
.quote-contact-text p {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-white);
}

.quote-form-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 40px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}

.form-title {
  font-size: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 12px;
}

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

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-platinum);
}

.form-control {
  background: #FFFFFF;
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 14px 18px;
  color: var(--text-white);
  font-size: 14px;
  transition: var(--transition);
  width: 100%;
}

.form-control:focus {
  outline: none;
  border-color: var(--border-hover);
  background: #FFFFFF;
  box-shadow: 0 0 15px rgba(15, 23, 42, 0.08);
}

html[lang="ar"] .form-control {
  font-family: var(--font-ar);
}

html[lang="en"] .form-control {
  font-family: var(--font-en);
}

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

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23D4AF37' 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 18px center;
  background-size: 16px;
  padding-right: 40px;
}

select.form-control option {
  background-color: #FFFFFF;
  color: #0F172A;
}

html[lang="ar"] select.form-control {
  background-position: left 18px center;
  padding-left: 40px;
  padding-right: 18px;
}

.form-submit-btn {
  margin-top: 10px;
  width: 100%;
  padding: 15px;
  font-size: 15px;
}

.form-status {
  margin-top: 15px;
  padding: 12px;
  border-radius: 8px;
  font-size: 14px;
  display: none;
  text-align: center;
}

.form-status.success {
  display: block;
  background: rgba(46, 204, 113, 0.1);
  border: 1px solid rgba(46, 204, 113, 0.3);
  color: #2ecc71;
}

.form-status.error {
  display: block;
  background: rgba(231, 76, 60, 0.1);
  border: 1px solid rgba(231, 76, 60, 0.3);
  color: #e74c3c;
}

/* Footer Section */
footer {
  background-color: #0F172A;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  padding: 80px 0 30px 0;
  color: #94A3B8;
}

footer h1, footer h2, footer h3, footer h4, footer h5, footer h6, footer .footer-logo-text {
  color: #FFFFFF;
}

footer .footer-desc, footer .footer-link, footer .footer-info-item {
  color: #94A3B8;
}

footer .footer-link:hover {
  color: var(--accent-gold);
}

footer .copyright-section {
  color: #64748B;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

footer .social-icon {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #94A3B8;
}

footer .social-icon:hover {
  background: rgba(197, 160, 89, 0.15);
  border-color: var(--accent-gold);
  color: #FFFFFF;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo-img {
  height: 40px;
}

.footer-logo-text {
  font-size: 20px;
  font-weight: 800;
}

.footer-desc {
  font-size: 13px;
  line-height: 1.6;
}

.footer-links-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-col-title {
  font-size: 16px;
  font-weight: 700;
  position: relative;
  padding-bottom: 10px;
}

.footer-col-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--accent-gold);
}

html[lang="ar"] .footer-col-title::after {
  right: 0;
  left: auto;
}

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

.footer-link {
  font-size: 13px;
  color: var(--text-muted);
}

.footer-link:hover {
  color: var(--accent-gold);
  padding-inline-start: 6px;
}

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

.footer-info-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--text-muted);
}

.footer-info-icon {
  color: var(--accent-gold);
  margin-top: 3px;
}

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

.newsletter-form {
  display: flex;
  gap: 8px;
}

.newsletter-form .form-control {
  border-radius: 50px;
  padding: 10px 20px;
  font-size: 13px;
}

.newsletter-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gold-gradient);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--primary-dark);
  font-size: 16px;
  transition: var(--transition);
  flex-shrink: 0;
}

.newsletter-btn:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-gold);
}

.copyright-section {
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--text-muted);
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.social-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: var(--transition);
  font-size: 12px;
}

.social-icon:hover {
  background: rgba(212, 175, 55, 0.1);
  border-color: var(--accent-gold);
  color: var(--accent-gold);
  transform: translateY(-3px);
}

/* Animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* Responsive Styles */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 42px;
  }
  .products-grid,
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  header .nav-container {
    height: 70px;
  }
  
  .mobile-toggle {
    display: block;
  }
  
  .nav-menu {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: var(--secondary-dark);
    border-bottom: 1px solid var(--border-color);
    flex-direction: column;
    padding: 30px 24px;
    gap: 20px;
    transform: translateY(-120%);
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
    z-index: 99;
  }
  
  .nav-menu.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  
  .nav-actions {
    display: none;
  }
  
  .nav-actions.mobile-actions {
    display: flex !important;
    gap: 12px;
  }
  
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .hero-badge {
    align-self: center;
  }
  
  .hero-ctas {
    justify-content: center;
  }
  
  .hero-visual {
    order: -1;
  }
  
  .hero-image-wrapper {
    max-width: 320px;
    transform: none;
  }
  
  .hero-image-wrapper:hover {
    transform: scale(1.02);
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .about-card-overlay {
    bottom: -15px;
    inset-inline-end: -15px;
    padding: 15px 20px;
    max-width: 220px;
  }
  
  .products-grid,
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .quote-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .form-grid {
    grid-template-columns: 1fr;
  }
  
  .form-full-width {
    grid-column: span 1;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .copyright-section {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}

/* ==========================================================================
   Inner Pages (Profile & Catalog) Custom Styles
   ========================================================================== */

.inner-hero {
  padding-top: 160px;
  padding-bottom: 60px;
  background: linear-gradient(180deg, rgba(248, 250, 252, 0.5) 0%, var(--primary-dark) 100%);
}

.spec-table-container {
  background: var(--secondary-dark);
  border: 1px solid var(--border-color);
  padding: 30px;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.spec-table th {
  font-size: 15px;
  padding: 12px;
  background: rgba(197, 160, 89, 0.05);
}

.spec-table td {
  font-size: 14px;
  padding: 12px;
  vertical-align: middle;
}

.spec-table tr:hover {
  background: rgba(197, 160, 89, 0.02);
}

.download-box {
  transition: var(--transition);
}

.download-box:hover {
  box-shadow: var(--shadow-gold);
  border-color: var(--accent-gold);
}

@media (max-width: 991px) {
  .catalog-grid-layout {
    grid-template-columns: 1fr !important;
  }
}
