/* =========================================================
   إنجاز الأمان - Consolidated Stylesheet
   Version: 1.0
   ========================================================= */

/* --- CSS Variables (Light Mode) --- */
:root {
  /* Layout */
  --header-height: 78px;

  /* Core Colors */
  --brand: #2e7d32;
  --brand-600: #256929;
  --green-color: #2e7d32;
  --gold-color: #f5d061;

  /* Surfaces */
  --bg: #ffffff;
  --bg-soft: rgba(255, 255, 255, 0.75);
  --surface: #ffffff;

  /* Text */
  --text: #1f2937;
  --muted: #6b7280;

  /* Effects */
  --border: rgba(0, 0, 0, 0.08);
  --shadow: 0 8px 28px rgba(0, 0, 0, 0.06);
  --hover-bg: rgba(46, 125, 50, 0.08);

  color-scheme: light;
}

/* --- CSS Variables (Dark Mode) --- */
html[data-theme="dark"] {
  --bg: #000000;
  --bg-soft: rgba(0, 0, 0, 0.85);
  --surface: #000000;
  --text: #e5e7eb;
  --muted: #9ca3af;
  --brand: #58cf6b;
  --brand-600: #33b84a;
  --border: rgba(255, 255, 255, 0.08);
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  --hover-bg: rgba(88, 207, 107, 0.1);
  color-scheme: dark;
}

/* System preference fallback */
@media (prefers-color-scheme: dark) {
  html[data-theme=""] {
    --bg: #000000;
    --bg-soft: rgba(0, 0, 0, 0.85);
    --surface: #000000;
    --text: #e5e7eb;
    --muted: #9ca3af;
    --brand: #58cf6b;
    --brand-600: #33b84a;
    --border: rgba(255, 255, 255, 0.08);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    --hover-bg: rgba(88, 207, 107, 0.1);
    color-scheme: dark;
  }
}

/* --- Bootstrap Dark Mode Overrides & Custom Utilities --- */
html[data-theme="dark"] .text-dark {
  color: var(--text) !important;
}

html[data-theme="dark"] .text-muted {
  color: var(--muted) !important;
}

html[data-theme="dark"] .bg-light {
  background-color: var(--bg-soft) !important;
}

html[data-theme="dark"] .card {
    background-color: var(--surface);
    border-color: var(--border);
    color: var(--text);
}

/* Alternative background for sections that need contrast in both modes */
.bg-section-alt {
    background-color: #f8f9fa; /* Light mode default (Bootstrap bg-light) */
}

html[data-theme="dark"] .bg-section-alt {
    background-color: #0b0f14; /* Dark mode contrast */
}

/* --- Base/Reset --- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  background: var(--bg);
  color: var(--text);
}

body {
  font-family:
    "Tajawal",
    "Cairo",
    system-ui,
    -apple-system,
    "Segoe UI",
    Roboto,
    "Helvetica Neue",
    Arial;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-padding-top: var(--header-height);
  transition:
    background-color 0.25s ease,
    color 0.25s ease;
  padding-top: var(--header-height, 78px);
}

/* --- Header & Navigation --- */
.site-header {
  position: fixed;
  top: 0;
  inset-inline: 0;
  z-index: 1040;
  width: 100%;
  background: var(--bg-soft);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  box-shadow: var(--shadow);
  border-bottom: 1px solid var(--border);
}

html[data-theme="dark"] .site-header {
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(16px) saturate(150%);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
}

.navbar {
  padding: 0.6rem 1rem;
  min-height: var(--header-height);
  background: transparent;
}

.navbar .navbar-brand {
  margin-inline-end: auto !important;
  margin-inline-start: 0 !important;
}

.navbar-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--brand);
  transition: opacity 0.2s;
}

.navbar-brand:hover {
  opacity: 0.9;
}

.brand-name {
  font-family: "Cairo", "Tajawal", sans-serif;
  font-weight: 700;
  font-size: 1.45rem;
  letter-spacing: 0.3px;
  line-height: 1;
  margin-top: 2px;
  color: var(--brand);
}

.brand-logo {
  height: 46px;
  width: auto;
  border-radius: 10px;
}

.navbar-toggler {
  border: 1px solid var(--border);
  padding: 0.45rem 0.7rem;
  color: var(--text);
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.15rem rgba(88, 207, 107, 0.25);
}

.navbar-nav .nav-link {
  font-weight: 600;
  color: var(--text);
  opacity: 0.9;
  border-radius: 0.75rem;
  padding: 0.6rem 0.9rem;
  transition:
    background-color 0.15s,
    color 0.15s,
    opacity 0.15s;
}

.navbar-nav .nav-link:hover {
  background: var(--hover-bg);
  opacity: 1;
}

.navbar-nav .nav-link.active {
  color: var(--brand);
  background: var(--hover-bg);
}

/* Remove unwanted spacing after header */
.site-header + * {
  margin-top: 0;
}

main {
  margin-top: 0 !important;
}

/* --- Theme Toggle --- */
.theme-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text);
  padding: 0.45rem 0.75rem;
  border-radius: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition:
    background-color 0.15s,
    border-color 0.15s,
    opacity 0.2s;
}

.theme-toggle:hover {
  background: var(--hover-bg);
}

.theme-toggle .fa-sun,
.theme-toggle .fa-moon {
  font-size: 1rem;
}

/* Nav Theme Toggle - Spacing (Desktop only - inside menu) */
.nav-theme-toggle {
  margin-inline-start: 1rem;
  padding-inline-start: 1rem;
  border-inline-start: 1px solid var(--border);
}

/* Header Theme Toggle - Always visible button */
.header-theme-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text);
  padding: 0.45rem 0.75rem;
  border-radius: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition:
    background-color 0.15s,
    border-color 0.15s,
    opacity 0.2s;
}

.header-theme-toggle:hover {
  background: var(--hover-bg);
}

/* Hide mobile theme toggle on large screens since it's in header */
@media (min-width: 992px) {
  .header-theme-toggle {
    display: none;
  }
}

@media (max-width: 991.98px) {
  .nav-theme-toggle {
    display: none !important;
  }
  
  .header-theme-toggle {
    display: inline-flex;
  }
}

/* --- Pattern Backgrounds --- */
.pattern-bg {
  background:
    radial-gradient(
      ellipse at 20% 10%,
      rgba(46, 125, 50, 0.07) 0 12%,
      transparent 13%
    ),
    radial-gradient(
      ellipse at 80% 30%,
      rgba(245, 208, 97, 0.1) 0 10%,
      transparent 12%
    ),
    radial-gradient(
      ellipse at 40% 80%,
      rgba(46, 125, 50, 0.06) 0 11%,
      transparent 12%
    ),
    linear-gradient(#ffffff, #ffffff);
  background-size:
    480px 360px,
    520px 420px,
    460px 380px,
    auto;
}

[data-theme="dark"] .pattern-bg {
  background:
    radial-gradient(
      ellipse at 20% 10%,
      rgba(46, 125, 50, 0.1) 0 12%,
      transparent 13%
    ),
    radial-gradient(
      ellipse at 80% 30%,
      rgba(245, 208, 97, 0.14) 0 10%,
      transparent 12%
    ),
    radial-gradient(
      ellipse at 40% 80%,
      rgba(46, 125, 50, 0.09) 0 11%,
      transparent 12%
    ),
    linear-gradient(var(--bg), var(--bg));
}

/* --- Gallery & Lightbox --- */
.product-showcase {
  background: transparent;
  padding: 3rem 0;
}

.gallery-card {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg);
  transform: translateY(14px);
  /* opacity: 0; REMOVED to ensure visibility if JS fails or lags, or add a no-js class approach. 
     For now, we will make them visible by default and let JS hide them if needed, 
     OR better: keep opacity 0 but add a CSS animation that defaults to 1 after a delay as fallback. */
  opacity: 0;
  animation: fadeInFallback 0.5s ease 1s forwards; /* Fallback: reveal after 1s if JS doesn't */
  transform: translateY(14px);
  transition:
    transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1),
    opacity 0.6s ease,
    box-shadow 0.25s ease;
}

.gallery-card:hover {
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.14);
  transform: translateY(-2px);
  border: 3px solid var(--green-color);
}

.gallery-card img {
  border-radius: 15px;
  display: block;
  width: 100%;
}

html[data-theme="dark"] .gallery-card {
  background: #141b2b;
}

.will-reveal.reveal-in {
  transform: translateY(0);
  opacity: 1;
}

.gallery-img {
  display: block;
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-card:hover .gallery-img {
  transform: scale(1.03);
}

/* Lightbox Modal */
.modal-lightbox {
  padding: 2.25rem 1rem 1rem;
}

.btn-close-gold {
  position: absolute;
  top: 0.8rem;
  inset-inline-end: 0.8rem;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 2px solid #f5d061;
  background: transparent;
  cursor: pointer;
}

.btn-close-gold::before,
.btn-close-gold::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 2px;
  background: #f5d061;
  transform-origin: center;
}

.btn-close-gold::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.btn-close-gold::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.btn-close-gold:hover {
  box-shadow: 0 4px 18px rgba(245, 208, 97, 0.35);
}

/* Lightbox Navigation */
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.85);
  color: #1f2937;
  font-size: 26px;
  line-height: 44px;
  text-align: center;
  cursor: pointer;
  user-select: none;
  transition:
    box-shadow 0.2s ease,
    transform 0.1s ease;
}

.lightbox-nav:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
  transform: translateY(calc(-50% - 1px));
}

.lightbox-nav.prev {
  inset-inline-start: 12px;
}

.lightbox-nav.next {
  inset-inline-end: 12px;
}

[data-theme="dark"] .lightbox-nav {
  background: rgba(0, 0, 0, 0.65);
  color: #e5e7eb;
  border-color: rgba(255, 255, 255, 0.12);
}

#lightboxImage {
  max-height: 80vh;
  object-fit: contain;
}

/* --- CTA Section --- */
.cta-section {
  position: relative;
  overflow: hidden;
  padding: 4rem 0;
  background-color: var(--gold-color);
}

.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1605100804763-247f67b3557e?auto=format&fit=crop&w=1350&q=80");
  background-size: cover;
  opacity: 0.12;
  z-index: 0;
}

.cta-section .container {
  position: relative;
  z-index: 1;
}

.btn-white {
  background: #fff;
  color: #111;
  border-radius: 10px;
  padding: 0.8rem 1.8rem;
  font-weight: 700;
  text-decoration: none;
}

/* --- Contact Section --- */
.contact-section {
  background: linear-gradient(135deg, #1fa34a, #2e7d32);
  color: white;
  padding: 60px 20px;
  border-radius: 15px;
  max-width: 800px;
  margin: 40px auto;
  font-family: "Tajawal", sans-serif;
}

.contact-title {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 30px;
  text-align: right;
}

.company-box {
  background: rgba(255, 255, 255, 0.1);
  padding: 15px 20px;
  border-radius: 10px;
  display: inline-block;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 40px;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
  font-size: 20px;
}

.contact-item i {
  font-size: 28px;
  margin-left: 15px;
  color: white;
  background: rgba(255, 255, 255, 0.15);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.contact-item a {
  color: white;
  text-decoration: none;
  transition: 0.3s;
}

.contact-item a:hover {
  text-decoration: underline;
  opacity: 0.9;
}

.logo-box {
  text-align: center;
  margin-top: 30px;
}

.logo-box img {
  max-width: 80px;
  filter: brightness(0) invert(1);
}

/* --- Footer --- */
:where(.site-footer, .floating-buttons) {
  --gold-color: #d4af37;
}

.site-footer {
  --footer-bg: linear-gradient(135deg, #1a472a 0%, #0d2818 100%);
  --footer-text: #ffffff;
  --footer-link: rgba(255, 255, 255, 0.85);
  --footer-link-hover: #d4af37;

  background: var(--footer-bg);
  color: var(--footer-text);
  padding: 0;
  font-family: "Tajawal", "Cairo", sans-serif;
  position: relative;
  overflow: hidden;
  color-scheme: dark;
  isolation: isolate;
}

html[data-theme="dark"] .site-footer {
  --footer-bg: linear-gradient(135deg, #0a1f10 0%, #050d08 100%);
  --footer-text: #e8f6ea;
  --footer-link: rgba(255, 255, 255, 0.8);
  --footer-link-hover: #b7950b;
}

/* Footer Pattern Background */
.footer-pattern {
  position: absolute;
  inset: 0;
  background-image: 
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 30px,
      rgba(255, 255, 255, 0.02) 30px,
      rgba(255, 255, 255, 0.02) 31px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 30px,
      rgba(255, 255, 255, 0.02) 30px,
      rgba(255, 255, 255, 0.02) 31px
    );
  pointer-events: none;
  z-index: 0;
}

/* Footer Top Section */
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2.5rem 0;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-logo {
  width: 70px;
  height: auto;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

.footer-brand-info {
  display: flex;
  flex-direction: column;
}

.footer-brand-name {
  font-family: 'Cairo', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0;
  line-height: 1.2;
}

.footer-brand-tagline {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

/* Footer CTA Button */
.footer-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.8rem 1.5rem;
  background: linear-gradient(135deg, var(--gold-color), #b7950b);
  color: #111 !important;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.footer-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
  color: #111 !important;
}

.footer-cta-btn i {
  font-size: 1.1rem;
}

/* Footer Divider */
.footer-divider {
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(255, 255, 255, 0.15),
    rgba(212, 175, 55, 0.3),
    rgba(255, 255, 255, 0.15),
    transparent
  );
  margin: 0;
}

/* Footer Sections */
.footer-section {
  padding: 2rem 0;
}

.site-footer .footer-title {
  font-family: "Cairo", sans-serif;
  color: #ffffff;
  margin-bottom: 1.25rem;
  font-size: 1.15rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.site-footer .footer-title i {
  color: var(--gold-color);
  font-size: 1rem;
}

.footer-description {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

/* Footer Features */
.footer-features {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
}

.footer-feature i {
  color: #4caf50;
  font-size: 0.85rem;
}

/* Footer Links */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.7rem;
}

.footer-links a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.25s ease;
  padding: 0.25rem 0;
}

.footer-links a i {
  font-size: 0.65rem;
  color: var(--gold-color);
  opacity: 0;
  transform: translateX(6px);
  transition: all 0.25s ease;
}

.footer-links a:hover {
  color: var(--gold-color);
  padding-right: 0.5rem;
}

.footer-links a:hover i {
  opacity: 1;
  transform: translateX(0);
}

/* Footer Contact List */
.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact-list li {
  margin-bottom: 0.75rem;
}

.footer-contact-list a {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.6rem 0.8rem;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-contact-list a:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(-4px);
}

.footer-contact-list .contact-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(46, 125, 50, 0.2);
  border-radius: 8px;
  flex-shrink: 0;
}

.footer-contact-list .contact-icon i {
  color: #4caf50;
  font-size: 0.95rem;
}

.footer-contact-list .contact-icon.whatsapp {
  background: rgba(37, 211, 102, 0.2);
}

.footer-contact-list .contact-icon.whatsapp i {
  color: #25d366;
}

.footer-contact-list .contact-text {
  display: flex;
  flex-direction: column;
}

.footer-contact-list .contact-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-contact-list .contact-value {
  font-size: 0.9rem;
  color: #ffffff;
  font-weight: 500;
}

/* Footer Social Section */
.footer-social-section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 2rem 0;
  flex-wrap: wrap;
}

.social-label {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
}

.social-icons {
  display: flex;
  gap: 0.75rem;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-size: 1.15rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.social-icons a:hover {
  transform: translateY(-4px);
}

.social-icons a.social-whatsapp:hover {
  background: #25d366;
  border-color: #25d366;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.social-icons a.social-snapchat:hover {
  background: #fffc00;
  border-color: #fffc00;
  color: #000;
  box-shadow: 0 8px 20px rgba(255, 252, 0, 0.3);
}

.social-icons a.social-twitter:hover {
  background: #1da1f2;
  border-color: #1da1f2;
  box-shadow: 0 8px 20px rgba(29, 161, 242, 0.3);
}

.social-icons a.social-instagram:hover {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  border-color: transparent;
  box-shadow: 0 8px 20px rgba(225, 48, 108, 0.3);
}

/* Footer Bottom */
.site-footer .footer-bottom {
  padding: 1.5rem 0;
}

.copyright {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

@media (min-width: 768px) {
  .copyright {
    justify-content: flex-start;
  }
}

.copyright i {
  color: var(--gold-color);
}

.copyright strong {
  color: #ffffff;
}

/* Responsive Footer */
@media (max-width: 991.98px) {
  .footer-top {
    justify-content: center;
    text-align: center;
  }
  
  .footer-brand {
    flex-direction: column;
  }
  
  .footer-cta-btn {
    margin-top: 0.5rem;
  }
}

@media (max-width: 767.98px) {
  .site-footer .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  .footer-top {
    padding: 1.5rem 0;
    gap: 1rem;
  }
  
  .footer-section {
    text-align: center;
    padding: 1.5rem 0;
  }
  
  .site-footer .footer-title {
    justify-content: center;
    font-size: 1.1rem;
  }
  
  .footer-description {
    font-size: 0.9rem;
    line-height: 1.7;
  }
  
  .footer-features {
    align-items: center;
  }
  
  .footer-links a {
    justify-content: center;
  }
  
  .footer-contact-list a {
    justify-content: center;
    padding: 0.5rem 0.6rem;
  }
  
  .footer-contact-list .contact-text {
    text-align: start;
  }
  
  .footer-contact-list .contact-value {
    font-size: 0.85rem;
  }
  
  .footer-social-section {
    flex-direction: column;
    padding: 1.5rem 0;
    gap: 1rem;
  }
  
  .social-icons {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .social-icons a {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  /* Footer bottom section improvements */
  .site-footer .footer-bottom {
    padding: 1.25rem 0;
  }
  
  .footer-bottom .row {
    flex-direction: column;
    gap: 1rem;
  }
  
  .footer-bottom .col-md-6 {
    width: 100%;
  }
  
  .copyright {
    font-size: 0.85rem;
    flex-wrap: wrap;
  }
  
  .onesoft-credit {
    width: 100%;
    justify-content: center;
  }
}

/* Extra small devices (phones, 480px and down) */
@media (max-width: 480px) {
  .footer-top {
    padding: 1.25rem 0;
  }
  
  .footer-brand-name {
    font-size: 1.3rem;
  }
  
  .footer-brand-tagline {
    font-size: 0.85rem;
  }
  
  .footer-logo {
    width: 55px;
  }
  
  .footer-cta-btn {
    padding: 0.7rem 1.2rem;
    font-size: 0.9rem;
  }
  
  .footer-section {
    padding: 1rem 0;
  }
  
  .site-footer .footer-title {
    font-size: 1rem;
    margin-bottom: 1rem;
  }
  
  .footer-links li {
    margin-bottom: 0.5rem;
  }
  
  .footer-links a {
    font-size: 0.9rem;
    padding: 0.2rem 0;
  }
  
  .footer-contact-list a {
    padding: 0.4rem 0.5rem;
    gap: 0.6rem;
  }
  
  .footer-contact-list .contact-icon {
    width: 32px;
    height: 32px;
  }
  
  .footer-contact-list .contact-icon i {
    font-size: 0.85rem;
  }
  
  .footer-contact-list .contact-label {
    font-size: 0.7rem;
  }
  
  .footer-contact-list .contact-value {
    font-size: 0.8rem;
  }
  
  .copyright {
    font-size: 0.8rem;
    gap: 0.25rem;
  }
  
  .onesoft-credit {
    padding: 8px 12px;
    gap: 8px;
  }
  
  .onesoft-credit img {
    height: 30px;
  }
  
  .onesoft-credit .company-name {
    font-size: 0.85rem;
  }
  
  .onesoft-credit .company-phone {
    font-size: 0.7rem;
  }
  
  .onesoft-credit .developer-label {
    font-size: 0.75rem;
    padding-left: 8px;
  }
}

/* --- Floating Buttons --- */
.floating-buttons {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 1100;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.floating-buttons a {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.25rem;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.22);
  transition:
    transform 0.12s ease,
    opacity 0.12s ease,
    background 0.12s ease,
    border-color 0.12s ease;
}

.floating-buttons a:hover {
  transform: translateY(-4px);
  opacity: 0.98;
}

/* Location Button */
.floating-buttons a.location {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: transparent;
}

.floating-buttons a.location i {
  color: var(--gold-color) !important;
  font-size: 1.05rem;
  display: inline-block;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.2);
  transition:
    color 0.12s ease,
    transform 0.12s ease;
}

.floating-buttons a.location:hover {
  background: rgba(212, 175, 55, 0.06);
  border-color: rgba(212, 175, 55, 0.5);
  transform: translateY(-4px);
}

.floating-buttons a.location::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(212, 175, 55, 0.35);
  opacity: 0;
  transform: scale(0.9);
  transition: 0.25s ease;
}

.floating-buttons a.location:hover::after {
  opacity: 1;
  transform: scale(1);
}

/* WhatsApp & Snapchat */
.floating-buttons a.whatsapp {
  background: #25d366;
}

.floating-buttons a.snapchat {
  background: #fffc00;
  color: #000;
}

/* Back to Top Button */
.floating-buttons a.top-btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: transparent;
}

.floating-buttons a.top-btn i {
  color: var(--gold-color) !important;
  font-size: 1.05rem;
  display: inline-block;
  transition:
    color 0.12s ease,
    transform 0.12s ease;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.2);
}

.floating-buttons a.top-btn:hover {
  background: rgba(212, 175, 55, 0.06);
  border-color: rgba(212, 175, 55, 0.5);
}

/* Floating Buttons Mobile Responsiveness */
@media (max-width: 767.98px) {
  .floating-buttons {
    left: 12px;
    bottom: 12px;
    gap: 8px;
  }
  
  .floating-buttons a {
    width: 44px;
    height: 44px;
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .floating-buttons {
    left: 10px;
    bottom: 10px;
    gap: 6px;
  }
  
  .floating-buttons a {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  .floating-buttons a.location i,
  .floating-buttons a.top-btn i {
    font-size: 0.95rem;
  }
}

/* =========================================================
   Products Section (Index Page)
   ========================================================= */
#products {
  --gold-color: #2e7d32;
  --light-gold: #7ccf7a;
  --dark-gold: #144e21;
  --white-color: #ffffff;
  --black-color: #0f0f0f;

  --lux-surface: #ffffff;
  --lux-surface-2: #f8f9fa;
  --lux-text: #1f2937;
  --lux-muted: #6b7280;
  --lux-primary: var(--gold-color);
  --lux-accent: var(--light-gold);
  --lux-border: rgba(0, 0, 0, 0.08);
  --lux-shadow: 0 8px 28px rgba(0, 0, 0, 0.06);
}

/* Products Dark Mode */
html[data-theme="dark"] #products {
  --lux-surface: #0b0f14;
  --lux-surface-2: #0f141b;
  --lux-text: #e6eaf0;
  --lux-muted: #a8b0bb;
  --lux-primary: #d4af37;
  --lux-accent: #1db954;
  --lux-border: rgba(255, 255, 255, 0.08);
  --lux-shadow: 0 12px 40px rgba(0, 0, 0, 0.55);
}

@media (prefers-color-scheme: dark) {
  html[data-theme=""] #products {
    --lux-surface: #0b0f14;
    --lux-surface-2: #0f141b;
    --lux-text: #e6eaf0;
    --lux-muted: #a8b0bb;
    --lux-primary: #d4af37;
    --lux-accent: #1db954;
    --lux-border: rgba(255, 255, 255, 0.08);
    --lux-shadow: 0 12px 40px rgba(0, 0, 0, 0.55);
  }
}

/* Products Buttons */
#products .bg-gold {
  background-color: var(--gold-color);
}
#products .text-gold {
  color: var(--gold-color);
}
#products .btn-outline-gold {
  color: var(--gold-color);
  border-color: var(--gold-color);
}
#products .btn-outline-gold:hover {
  background-color: var(--gold-color);
  color: var(--white-color);
}
#products .btn-gold {
  background-color: var(--gold-color);
  color: var(--white-color);
  border-color: var(--gold-color);
}
#products .btn-gold:hover {
  background-color: var(--dark-gold);
  border-color: var(--dark-gold);
  color: var(--white-color);
}

/* Products Layout */
#products.creative-gallery {
  background: var(--white-color);
  overflow: hidden;
  position: relative;
  padding-top: 0 !important;
  margin-top: 0 !important;
}

#products .section-transition {
  width: 100%;
  height: 120px;
  margin-top: -1px;
  overflow: hidden;
  padding-top: 0 !important;
  margin-top: 0 !important;
}

#products .section-transition svg {
  width: 100%;
  height: 100%;
}

#products .product-showcase {
  background: linear-gradient(135deg, #f9f9f9 0%, var(--white-color) 100%);
  position: relative;
  overflow: hidden;
  padding-top: 0 !important;
  margin-top: 0 !important;
}

#products .product-wave {
  background: var(--white-color);
  position: relative;
  padding: 5rem 0;
  margin-bottom: 5rem;
  padding-top: 0 !important;
  margin-top: 0 !important;
}

#products .product-angle {
  background: var(--black-color);
  color: var(--white-color);
  padding: 6rem 2rem;
  position: relative;
  clip-path: polygon(0 10%, 100% 0, 100% 90%, 0% 100%);
  margin: -3rem 0 5rem;
  padding-top: 0 !important;
  margin-top: 0 !important;
}

#products .product-grid {
  background: var(--white-color);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
  padding-top: 0 !important;
  margin-top: 0 !important;
}

#products .product-intro {
  font-size: 1.2rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto 2rem;
}

/* Product Images */
#products .product-image-wrapper {
  width: 100%;
  aspect-ratio: 16/9;
  min-height: 220px;
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
  display: block;
  transition: transform 0.5s ease;
  margin-top: 5rem;
}

#products .product-image-wrapper:hover {
  transform: scale(1.03);
}

#products .product-image-wrapper img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  display: block;
}

#products .image-fill {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.5s ease;
}

#products .metal-frame {
  position: absolute;
  inset: 10px;
  border: 2px solid rgba(46, 125, 50, 0.5);
  border-radius: inherit;
  pointer-events: none;
  box-sizing: border-box;
}

/* Product Content */
#products .product-content {
  padding: 2rem;
}

#products .product-badge-container {
  position: relative;
  display: inline-block;
  margin-bottom: 1.5rem;
}

#products .product-badge {
  display: inline-block;
  background: var(--gold-color);
  color: var(--white-color);
  padding: 0.3rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
}

#products .badge-decoration {
  position: absolute;
  width: 30px;
  height: 2px;
  background: var(--gold-color);
  top: 50%;
  right: -35px;
}

#products .product-title {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
  background: linear-gradient(90deg, var(--dark-gold), var(--light-gold));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

#products .product-description {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  color: inherit;
}

#products .product-specs {
  margin-bottom: 2rem;
}

#products .spec-item {
  display: flex;
  align-items: center;
  margin-bottom: 0.8rem;
}

#products .spec-icon {
  margin-left: 0.8rem;
  color: var(--gold-color);
}

/* Detail Cards */
#products .detail-card {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  padding: 1.5rem;
  background: var(--white-color);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

#products .detail-card:hover {
  transform: translateY(-5px);
}

#products .detail-icon {
  width: 50px;
  height: 50px;
  background: rgba(124, 207, 122, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 1rem;
  color: var(--gold-color);
  font-size: 1.2rem;
}

#products .detail-content h4 {
  color: var(--gold-color);
  margin-bottom: 0.5rem;
}

#products .detail-content p {
  color: #666;
  margin-bottom: 0;
}

/* Floating Gears */
#products .floating-gears {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

#products .gear-large {
  position: absolute;
  width: 200px;
  height: 200px;
  top: 10%;
  right: 5%;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M50,10 L50,20 M50,80 L50,90 M10,50 L20,50 M80,50 L90,50 M28.5,28.5 L35.5,35.5 M64.5,64.5 L71.5,71.5 M28.5,71.5 L35.5,64.5 M64.5,35.5 L71.5,28.5' stroke='%23144E21' stroke-width='2'/%3E%3Ccircle cx='50' cy='50' r='30' fill='none' stroke='%23144E21' stroke-width='2'/%3E%3C/svg%3E")
    center/contain no-repeat;
  animation: rotate 30s linear infinite;
  opacity: 0.2;
}

#products .gear-small {
  position: absolute;
  width: 120px;
  height: 120px;
  bottom: 15%;
  left: 10%;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M50,10 L50,20 M50,80 L50,90 M10,50 L20,50 M80,50 L90,50 M28.5,28.5 L35.5,35.5 M64.5,64.5 L71.5,71.5 M28.5,71.5 L35.5,64.5 M64.5,35.5 L71.5,28.5' stroke='%23144E21' stroke-width='2'/%3E%3Ccircle cx='50' cy='50' r='30' fill='none' stroke='%23144E21' stroke-width='2'/%3E%3C/svg%3E")
    center/contain no-repeat;
  animation: rotateReverse 20s linear infinite;
  opacity: 0.2;
}

/* Wire Grid */
#products .wire-grid-container {
  position: relative;
  width: 100%;
  height: 400px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: scale(0.9);
  transition: all 1s ease;
}

#products .wire-grid-container.in-view {
  opacity: 1;
  transform: scale(1);
}

#products .wire-grid {
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--white-color);
  display: flex;
  justify-content: center;
  align-items: center;
}

#products .wire {
  position: absolute;
  background: linear-gradient(90deg, var(--dark-gold), var(--light-gold));
  transform-origin: center;
  transition: all 0.5s ease;
}

#products .wire.horizontal {
  width: 100%;
  height: 2px;
  top: 50%;
  animation: wirePulse 3s infinite;
}

#products .wire.vertical {
  width: 2px;
  height: 100%;
  left: 50%;
  animation: wirePulse 3s infinite 0.5s;
}

#products .wire.diagonal-left {
  width: 2px;
  height: 140%;
  left: 50%;
  transform: rotate(45deg);
  animation: wirePulse 3s infinite 1s;
}

#products .wire.diagonal-right {
  width: 2px;
  height: 140%;
  left: 50%;
  transform: rotate(-45deg);
  animation: wirePulse 3s infinite 1.5s;
}

#products .intersection-point {
  position: absolute;
  width: 15px;
  height: 15px;
  background: var(--gold-color);
  border-radius: 50%;
  z-index: 2;
  box-shadow: 0 0 10px rgba(34, 100, 34, 0.7);
  animation: pulse 2s infinite;
}

#products .wire-grid-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(124, 207, 122, 0.1),
    rgba(255, 255, 255, 0.1)
  );
  backdrop-filter: blur(2px);
}

/* Image Box with Shine */
#products .image-box {
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
  transition: transform 0.5s ease;
  height: 400px;
  box-shadow: 0 10px 30px rgba(46, 125, 50, 0.2);
}

#products .image-box:hover {
  transform: scale(1.03);
}

#products .image-box:hover .image-fill {
  transform: scale(1.1);
}

#products .shine-effect {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.15) 0%,
    transparent 60%
  );
  transform: rotate(25deg);
  pointer-events: none;
}

#products .image-box:hover .shine-effect {
  animation: shine 1.5s forwards;
}

/* Products Section Elements */
#products .section,
#products .hero,
#products .features,
#products .card,
#products .cta,
#products .stats,
#products .services {
  background: var(--lux-surface);
  color: var(--lux-text);
  border-color: var(--lux-border);
  box-shadow: var(--lux-shadow);
}

#products .section-alt,
#products .card.alt,
#products .strip {
  background: var(--lux-surface-2);
}

#products .card .title,
#products .section .title,
#products h1,
#products h2,
#products h3,
#products h4 {
  color: var(--lux-text);
}

#products .card p,
#products .section p,
#products .muted,
#products .text-muted {
  color: var(--lux-muted) !important;
}

#products .btn-primary,
#products .btn.btn-primary {
  background: var(--lux-primary);
  border-color: var(--lux-primary);
}

#products .btn-primary:hover,
#products .btn.btn-primary:hover {
  filter: brightness(1.05);
}

#products .badge,
#products .pill {
  background: color-mix(in oklab, var(--lux-primary), black 10%);
  color: #fff;
}

#products hr {
  border-color: var(--lux-border);
}

#products .gradient-accent {
  background: linear-gradient(135deg, var(--lux-primary), var(--lux-accent));
}

/* Products Dark Mode Enhancements */
html[data-theme="dark"] #products h1,
html[data-theme="dark"] #products h2,
html[data-theme="dark"] #products h3,
html[data-theme="dark"] #products h4,
html[data-theme="dark"] #products .title {
  background: linear-gradient(135deg, var(--lux-primary), var(--lux-accent));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 6px rgba(212, 175, 55, 0.3);
}

html[data-theme="dark"] #products .btn-primary,
html[data-theme="dark"] #products .cta .btn {
  background: linear-gradient(135deg, var(--lux-primary), var(--lux-accent));
  border: none;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
}

html[data-theme="dark"] #products .btn-primary:hover,
html[data-theme="dark"] #products .cta .btn:hover {
  filter: brightness(1.1);
  box-shadow:
    0 6px 20px rgba(0, 0, 0, 0.5),
    0 0 12px rgba(212, 175, 55, 0.4);
}

html[data-theme="dark"] #products .card,
html[data-theme="dark"] #products .service,
html[data-theme="dark"] #products .feature {
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

html[data-theme="dark"] #products .card:hover,
html[data-theme="dark"] #products .service:hover,
html[data-theme="dark"] #products .feature:hover {
  transform: translateY(-6px);
  box-shadow:
    0 12px 30px rgba(0, 0, 0, 0.6),
    0 0 16px rgba(29, 185, 84, 0.35);
}

html[data-theme="dark"] #products .stats .number {
  color: var(--lux-primary);
  text-shadow: 0 0 8px rgba(212, 175, 55, 0.45);
}

/* Products Dark Mode Lux Extras */
html[data-theme="dark"] #products .btn-primary,
html[data-theme="dark"] #products .btn.btn-primary,
html[data-theme="dark"] #products .cta .btn {
  background: linear-gradient(
    135deg,
    var(--lux-primary),
    var(--lux-accent)
  ) !important;
  border: 1px solid color-mix(in oklab, var(--lux-primary), black 20%) !important;
  box-shadow:
    0 6px 22px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(212, 175, 55, 0.15) !important;
}

html[data-theme="dark"] #products .btn-primary:hover,
html[data-theme="dark"] #products .btn.btn-primary:hover,
html[data-theme="dark"] #products .cta .btn:hover {
  filter: brightness(1.06);
  box-shadow:
    0 8px 28px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(212, 175, 55, 0.25);
}

html[data-theme="dark"] #products h1,
html[data-theme="dark"] #products h2,
html[data-theme="dark"] #products h3,
html[data-theme="dark"] #products .title {
  text-shadow:
    0 0 0 transparent,
    0 0 8px rgba(212, 175, 55, 0.12),
    0 2px 10px rgba(0, 0, 0, 0.35);
}

html[data-theme="dark"] #products .card {
  border-color: color-mix(in oklab, var(--lux-border), var(--lux-primary) 12%);
  box-shadow: var(--lux-shadow);
  transition:
    box-shadow 0.18s ease,
    transform 0.18s ease,
    border-color 0.18s ease;
}

html[data-theme="dark"] #products .card:hover {
  transform: translateY(-2px);
  box-shadow:
    0 12px 34px rgba(0, 0, 0, 0.55),
    0 0 24px rgba(29, 185, 84, 0.2),
    0 0 10px rgba(212, 175, 55, 0.18);
  border-color: color-mix(in oklab, var(--lux-primary), white 20%);
}

html[data-theme="dark"] #products hr,
html[data-theme="dark"] #products .divider {
  border-color: color-mix(in oklab, var(--lux-primary), white 20%) !important;
  opacity: 0.55;
}

/* Products Dark Mode Specific Elements */
html[data-theme="dark"] #products,
html[data-theme="dark"] #products .product-showcase,
html[data-theme="dark"] #products .product-wave,
html[data-theme="dark"] #products .product-grid {
  background: #0b0f14 !important;
  color: #e6eaf0 !important;
}

html[data-theme="dark"] #products .wire-grid {
  background: rgba(255, 255, 255, 0.03) !important;
}

html[data-theme="dark"] #products .detail-card {
  background: #121821 !important;
  color: #d8dee6 !important;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.45) !important;
  border: 1px solid rgba(255, 255, 255, 0.06) !important;
}

html[data-theme="dark"] #products .badge {
  background-color: rgba(29, 185, 84, 0.12) !important;
  color: #d4af37 !important;
  border-color: rgba(29, 185, 84, 0.28) !important;
}

html[data-theme="dark"] #products .product-title {
  background: linear-gradient(90deg, #d4af37, #1db954) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}

html[data-theme="dark"] #products .btn-gold {
  background: linear-gradient(135deg, #d4af37, #1db954) !important;
  border-color: #c9a233 !important;
  color: #0b0f14 !important;
}

html[data-theme="dark"] #products .btn-outline-gold {
  color: #d4af37 !important;
  border-color: #d4af37 !important;
}

html[data-theme="dark"] #products .btn-outline-gold:hover {
  background: #d4af37 !important;
  color: #0b0f14 !important;
}

/* Header spacing fixes */
header,
.navbar,
.site-header {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

header.fixed-top,
.navbar.fixed-top {
  z-index: 1050;
}

header.fixed-top + #products,
.navbar.fixed-top + #products {
  padding-top: calc(var(--header-height, 70px)) !important;
}

/* --- Animations/Keyframes --- */
@keyframes rotate {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes rotateReverse {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(-360deg);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}

@keyframes spark {
  0% {
    opacity: 0;
    transform: translateY(0);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateY(-50px);
  }
}

@keyframes scrollDown {
  0% {
    top: 0;
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  100% {
    top: 100%;
    opacity: 0;
  }
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0% {
    opacity: 0.3;
  }
  50% {
    opacity: 0.7;
  }
  100% {
    opacity: 0.3;
  }
}

@keyframes wirePulse {
  0%,
  100% {
    opacity: 0.7;
  }
  50% {
    opacity: 1;
  }
}

@keyframes shine {
  0% {
    transform: translateX(-100%) rotate(25deg);
  }
  100% {
    transform: translateX(100%) rotate(25deg);
  }
}

/* --- Responsive/Media Queries --- */
@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    animation: none !important;
  }
  .site-header {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}

@media (max-width: 992px) {
  #products .product-content {
    padding: 1rem 0;
  }
  #products .product-image-wrapper {
    aspect-ratio: 4/3;
    min-height: 200px;
  }
}

@media (max-width: 768px) {
  .cta-section {
    padding: 2rem;
  }
  .btn-white {
    width: 100%;
  }
  .site-footer {
    padding: 2rem 0 1rem;
  }
  .floating-buttons {
    left: 12px;
    bottom: 12px;
    gap: 8px;
  }
  .floating-buttons a {
    width: 48px;
    height: 48px;
    font-size: 1.1rem;
  }
}

@media (max-width: 576px) {
  :root {
    --header-height: 72px;
  }
  .brand-name {
    font-size: 1.15rem;
  }
  .theme-toggle {
    padding: 0.4rem 0.65rem;
  }
  #products .product-image-wrapper {
    aspect-ratio: 3/2;
    min-height: 160px;
  }
}

@media (min-width: 576px) {
  html[data-theme="dark"] #products h1,
  html[data-theme="dark"] #products h2 {
    -webkit-text-stroke: 0.4px rgba(212, 175, 55, 0.25);
  }
}

/* =========================================================
   Products Page Specific Styles
   ========================================================= */

/* Patterned background for products page */
.page-products .pattern-bg {
  background:
    radial-gradient(ellipse at 20% 10%, rgba(46,125,50,0.07) 0 12%, transparent 13%),
    radial-gradient(ellipse at 80% 30%, rgba(245,208,97,0.10) 0 10%, transparent 12%),
    radial-gradient(ellipse at 40% 80%, rgba(46,125,50,0.06) 0 11%, transparent 12%),
    linear-gradient(#ffffff,#ffffff);
  background-size: 480px 360px, 520px 420px, 460px 380px, auto;
}

[data-theme="dark"] .page-products .pattern-bg {
  background:
    radial-gradient(ellipse at 20% 10%, rgba(46,125,50,0.10) 0 12%, transparent 13%),
    radial-gradient(ellipse at 80% 30%, rgba(245,208,97,0.14) 0 10%, transparent 12%),
    radial-gradient(ellipse at 40% 80%, rgba(46,125,50,0.09) 0 11%, transparent 12%),
    linear-gradient(var(--bg, #000), var(--bg, #000));
}

/* Gallery cards for products page */
.page-products .gallery-card {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border, rgba(0,0,0,.1));
  background: var(--bg, #fff);
  transform: translateY(14px);
  opacity: 0;
  transition: transform .5s cubic-bezier(.2,.8,.2,1),
              opacity .6s ease,
              box-shadow .25s ease;
}

.page-products .gallery-card:hover {
  box-shadow: 0 16px 36px rgba(0,0,0,.14);
  transform: translateY(-2px);
}

.page-products .will-reveal.reveal-in {
  transform: translateY(0);
  opacity: 1;
}

.page-products .gallery-img {
  display: block;
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform .5s ease;
}

.page-products .gallery-card:hover .gallery-img {
  transform: scale(1.03);
}

/* Modal lightbox for products page */
.page-products .modal-lightbox {
  padding: 2.25rem 1rem 1rem;
}

.page-products .btn-close-gold {
  position: absolute;
  top: .8rem;
  inset-inline-end: .8rem;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 2px solid #f5d061;
  background: transparent;
  cursor: pointer;
  z-index: 3;
}

.page-products .btn-close-gold::before,
.page-products .btn-close-gold::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 2px;
  background: #f5d061;
  transform-origin: center;
}

.page-products .btn-close-gold::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.page-products .btn-close-gold::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.page-products .btn-close-gold:hover {
  box-shadow: 0 4px 18px rgba(245,208,97,.35);
}

.page-products .lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border, rgba(0,0,0,.12));
  background: rgba(255,255,255,.85);
  color: #1f2937;
  font-size: 26px;
  line-height: 44px;
  text-align: center;
  cursor: pointer;
  user-select: none;
  transition: box-shadow .2s ease, transform .1s ease;
  z-index: 2;
}

.page-products .lightbox-nav:hover {
  box-shadow: 0 6px 20px rgba(0,0,0,.18);
  transform: translateY(calc(-50% - 1px));
}

.page-products .lightbox-nav.prev {
  inset-inline-start: 12px;
}

.page-products .lightbox-nav.next {
  inset-inline-end: 12px;
}

[data-theme="dark"] .page-products .lightbox-nav {
  background: rgba(0,0,0,.65);
  color: #e5e7eb;
  border-color: rgba(255,255,255,.12);
}

.page-products #lightboxImage {
  max-height: 80vh;
  object-fit: contain;
}
@keyframes fadeInFallback { to { opacity: 1; transform: translateY(0); } }

/* =========================================================
   OneSoft Branding Custom Styles
   ========================================================= */
.onesoft-credit {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08); /* Finer border */
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  padding: 8px 16px 8px 14px;
  border-radius: 12px; /* Professional rounded card feel */
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  margin-top: 10px;
  text-decoration: none !important;
  color: #fff !important;
  position: relative;
  overflow: hidden;
}

.onesoft-credit::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.onesoft-credit:hover {
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.15);
}

.onesoft-credit .developer-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
  border-left: 1px solid rgba(255, 255, 255, 0.15);
  padding-left: 10px;
  margin-left: -2px; /* Visual balance */
}

/* RTL support for the separator */
html[dir="rtl"] .onesoft-credit .developer-label {
  border-left: 1px solid rgba(255, 255, 255, 0.15);
  padding-left: 10px;
  border-right: none;
  padding-right: 0;
  margin-left: 0;
}

.onesoft-credit img {
  height: 38px;
  width: auto;
  border-radius: 6px;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
  transition: transform 0.3s ease;
}

.onesoft-credit:hover img {
  transform: scale(1.05);
}

.onesoft-credit .company-info {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  text-align: start;
}

.onesoft-credit .company-name {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.1);
  font-family: 'Cairo', sans-serif; /* Explicit font */
}

.onesoft-credit .company-phone {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.85); /* Slightly muted for hierarchy */
  font-family: 'Roboto', sans-serif; /* Clean number font */
  letter-spacing: 0.5px;
  margin-top: 2px;
}

/* Mobile Responsiveness */
@media (max-width: 576px) {
  .onesoft-credit {
    width: 100%;
    justify-content: center;
    background: rgba(255, 255, 255, 0.03); /* Lighter touch on mobile */
    padding: 10px;
    margin-top: 15px;
  }
  
  .onesoft-credit img {
    height: 34px;
  }
}

/* =========================================================
   About Hero Section - Premium World-Class Design
   ========================================================= */

.about-hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 4rem 0;
  overflow: hidden;
}

/* Background Image */
.about-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.about-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.75) 0%,
    rgba(0, 0, 0, 0.55) 50%,
    rgba(46, 125, 50, 0.4) 100%
  );
  backdrop-filter: blur(2px);
}

html[data-theme="dark"] .about-hero-overlay {
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(0, 0, 0, 0.75) 50%,
    rgba(46, 125, 50, 0.3) 100%
  );
}

/* Header Styles */
.about-hero-header {
  margin-bottom: 3rem;
  animation: fadeInUp 0.8s ease-out;
}

.about-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, rgba(245, 208, 97, 0.2), rgba(245, 208, 97, 0.1));
  border: 1px solid rgba(245, 208, 97, 0.4);
  color: #f5d061;
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
}

.about-badge i {
  font-size: 0.85rem;
  animation: pulse 2s ease-in-out infinite;
}

.about-hero-title {
  font-family: 'Cairo', 'Tajawal', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.3;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.about-hero-title .highlight {
  background: linear-gradient(135deg, #4caf50, #81c784);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-hero-subtitle {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

.about-hero-subtitle strong {
  color: #f5d061;
}

/* Glassmorphism Card */
.about-glass-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 24px;
  padding: 2.5rem;
  margin-bottom: 2.5rem;
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

html[data-theme="dark"] .about-glass-card {
  background: rgba(0, 0, 0, 0.4);
  border-color: rgba(255, 255, 255, 0.08);
}

/* Features Grid */
.about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (max-width: 768px) {
  .about-features {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.about-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: default;
}

.about-feature-item:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(46, 125, 50, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(46, 125, 50, 0.15);
}

.feature-icon-wrapper {
  position: relative;
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #2e7d32, #4caf50);
  border-radius: 14px;
  opacity: 0.15;
  transition: all 0.4s ease;
}

.about-feature-item:hover .feature-icon-bg {
  opacity: 0.25;
  transform: scale(1.1);
}

.feature-icon-wrapper i {
  position: relative;
  z-index: 1;
  font-size: 1.5rem;
  color: #4caf50;
  transition: all 0.4s ease;
}

.about-feature-item:hover .feature-icon-wrapper i {
  color: #81c784;
  transform: scale(1.1);
}

.feature-content h3 {
  font-family: 'Cairo', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.feature-content p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  margin: 0;
}

/* Vision 2030 Banner */
.vision-2030-banner {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.5rem 2rem;
  background: linear-gradient(135deg, rgba(46, 125, 50, 0.2), rgba(245, 208, 97, 0.1));
  border: 1px solid rgba(46, 125, 50, 0.3);
  border-radius: 16px;
  transition: all 0.4s ease;
}

.vision-2030-banner:hover {
  background: linear-gradient(135deg, rgba(46, 125, 50, 0.3), rgba(245, 208, 97, 0.15));
  transform: translateX(-4px);
}

/* Vision 2030 Logo Container */
.vision-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vision-2030-img {
  width: 80px;
  height: auto;
  transition: transform 0.3s ease;
}

.vision-2030-banner:hover .vision-2030-img {
  transform: scale(1.05);
}

/* Keep old icon styles for backward compatibility */
.vision-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #2e7d32, #4caf50);
  border-radius: 12px;
  flex-shrink: 0;
}

.vision-icon i {
  font-size: 1.4rem;
  color: #ffffff;
}

.vision-content p {
  margin: 0;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
}

.vision-content strong {
  color: #f5d061;
}

.vision-badge {
  flex-shrink: 0;
  font-size: 2rem;
}

@media (max-width: 768px) {
  .vision-2030-banner {
    flex-direction: column;
    text-align: center;
  }
  
  .vision-badge {
    order: -1;
  }
  
  .vision-2030-img {
    width: 100px;
  }
}

/* Statistics Section */
.about-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  padding: 2rem 2.5rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

html[data-theme="dark"] .about-stats {
  background: rgba(0, 0, 0, 0.5);
}

.stat-item {
  text-align: center;
  padding: 0.5rem 1rem;
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-3px);
}

.stat-number {
  font-family: 'Cairo', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800;
  background: linear-gradient(135deg, #4caf50, #81c784);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.stat-label {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 0.25rem;
}

.stat-divider {
  width: 1px;
  height: 50px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
}

@media (max-width: 768px) {
  .about-stats {
    flex-wrap: wrap;
    gap: 1rem;
    padding: 1.5rem;
  }
  
  .stat-divider {
    display: none;
  }
  
  .stat-item {
    flex: 1 1 45%;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.1);
  }
}

/* Responsive Adjustments */
@media (max-width: 576px) {
  .about-hero-section {
    padding: 3rem 0;
    min-height: auto;
  }
  
  .about-glass-card {
    padding: 1.5rem;
    border-radius: 18px;
  }
  
  .about-feature-item {
    padding: 1.25rem;
    flex-direction: column;
    text-align: center;
  }
  
  .feature-content h3 {
    font-size: 1.1rem;
  }
  
  .feature-content p {
    font-size: 0.9rem;
  }
  
  .vision-2030-banner {
    padding: 1.25rem;
  }
}

/* =========================================================
   Contact Hero Section - Premium World-Class Design
   ========================================================= */

.contact-hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 4rem 0;
  overflow: hidden;
}

/* Background Image */
.contact-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.contact-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.contact-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0.6) 50%,
    rgba(46, 125, 50, 0.35) 100%
  );
  backdrop-filter: blur(3px);
}

html[data-theme="dark"] .contact-hero-overlay {
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.92) 0%,
    rgba(0, 0, 0, 0.8) 50%,
    rgba(46, 125, 50, 0.25) 100%
  );
}

/* Header Styles */
.contact-hero-header {
  margin-bottom: 3rem;
  animation: fadeInUp 0.8s ease-out;
}

.contact-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, rgba(46, 125, 50, 0.3), rgba(46, 125, 50, 0.15));
  border: 1px solid rgba(46, 125, 50, 0.5);
  color: #81c784;
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
}

.contact-badge i {
  font-size: 1rem;
  animation: pulse 2s ease-in-out infinite;
}

.contact-hero-title {
  font-family: 'Cairo', 'Tajawal', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.3;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.contact-hero-title .highlight {
  background: linear-gradient(135deg, #4caf50, #81c784);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-hero-subtitle {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

/* Glassmorphism Card */
.contact-glass-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 24px;
  padding: 2.5rem;
  margin-bottom: 2rem;
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

html[data-theme="dark"] .contact-glass-card {
  background: rgba(0, 0, 0, 0.45);
  border-color: rgba(255, 255, 255, 0.08);
}

/* Company Name */
.contact-company-name {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  background: linear-gradient(135deg, rgba(245, 208, 97, 0.15), rgba(245, 208, 97, 0.05));
  border: 1px solid rgba(245, 208, 97, 0.3);
  border-radius: 12px;
  margin-bottom: 2rem;
  text-align: center;
}

.contact-company-name i {
  font-size: 1.25rem;
  color: #f5d061;
}

.contact-company-name span {
  font-family: 'Cairo', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
}

/* Contact Info Grid */
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-bottom: 2rem;
}

@media (max-width: 768px) {
  .contact-info-grid {
    grid-template-columns: 1fr;
  }
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.contact-info-item:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(46, 125, 50, 0.5);
  transform: translateY(-4px) translateX(-4px);
  box-shadow: 0 12px 40px rgba(46, 125, 50, 0.2);
}

.contact-info-item.whatsapp-item:hover {
  border-color: rgba(37, 211, 102, 0.6);
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.2);
}

.contact-icon-wrapper {
  position: relative;
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-icon-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #2e7d32, #4caf50);
  border-radius: 12px;
  opacity: 0.2;
  transition: all 0.4s ease;
}

.contact-info-item:hover .contact-icon-bg {
  opacity: 0.35;
  transform: scale(1.05);
}

.contact-icon-wrapper.whatsapp .contact-icon-bg {
  background: linear-gradient(135deg, #25d366, #128c48);
}

.contact-icon-wrapper i {
  position: relative;
  z-index: 1;
  font-size: 1.3rem;
  color: #4caf50;
  transition: all 0.4s ease;
}

.contact-icon-wrapper.whatsapp i {
  color: #25d366;
}

.contact-info-item:hover .contact-icon-wrapper i {
  transform: scale(1.1);
}

.contact-info-content {
  flex: 1;
}

.contact-info-content h3 {
  font-family: 'Cairo', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 0.25rem 0;
}

.contact-info-content p {
  font-size: 1.05rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
}

.contact-arrow {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.4);
  transition: all 0.4s ease;
}

.contact-info-item:hover .contact-arrow {
  color: #4caf50;
  transform: translateX(-6px);
}

.contact-info-item.whatsapp-item:hover .contact-arrow {
  color: #25d366;
}

/* Working Hours Banner */
.working-hours-banner {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem 1.5rem;
  background: linear-gradient(135deg, rgba(46, 125, 50, 0.2), rgba(46, 125, 50, 0.1));
  border: 1px solid rgba(46, 125, 50, 0.3);
  border-radius: 14px;
}

.hours-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #2e7d32, #4caf50);
  border-radius: 12px;
  flex-shrink: 0;
}

.hours-icon i {
  font-size: 1.25rem;
  color: #ffffff;
}

.hours-content h4 {
  font-family: 'Cairo', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #81c784;
  margin: 0 0 0.25rem 0;
}

.hours-content p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

.hours-content strong {
  color: #f5d061;
}

@media (max-width: 576px) {
  .working-hours-banner {
    flex-direction: column;
    text-align: center;
  }
}

/* Logo Section */
.contact-logo-section {
  text-align: center;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.contact-logo {
  width: 100px;
  height: auto;
  filter: brightness(0) invert(1);
  opacity: 0.9;
  transition: all 0.3s ease;
}

.contact-logo:hover {
  opacity: 1;
  transform: scale(1.05);
}

/* Responsive Adjustments */
@media (max-width: 576px) {
  .contact-hero-section {
    padding: 3rem 0;
    min-height: auto;
  }
  
  .contact-glass-card {
    padding: 1.5rem;
    border-radius: 18px;
  }
  
  .contact-company-name {
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem;
  }
  
  .contact-company-name span {
    font-size: 1rem;
  }
  
  .contact-info-item {
    padding: 1rem 1.25rem;
  }
  
  .contact-icon-wrapper {
    width: 44px;
    height: 44px;
  }
  
  .contact-icon-wrapper i {
    font-size: 1.1rem;
  }
  
  .contact-info-content h3 {
    font-size: 0.85rem;
  }
  
  .contact-info-content p {
    font-size: 0.95rem;
  }
}

