:root {
  /* الألوان الأساسية - الهوية الكلاسيكية الفاخرة */
  --forest: #002623;          
  --emerald-shadow: #094239;   
  --mountain-teal: #428177;    
  --deep-umber: #260f14;       
  --black-cherry: #4a151e;     
  --damask-red: #6b1f2a;       
  --golden-wheat: #b9a779;     
  --antique-sand: #988561;     
  --ivory-mist: #edebe0;       
  --charcoal: #2d3748;         
  --stone: #718096;            
  
  /* ألوان التصميم المعاد تعريفها */
  --primary-color: var(--forest);
  --primary-light: var(--emerald-shadow);
  --primary-dark: #001814;
  --secondary-color: var(--deep-umber);
  --accent-color: var(--damask-red);
  --gold-color: var(--golden-wheat);
  --text-dark: var(--forest);
  --bg-light: var(--ivory-mist);
  --white: #ffffff;
  
  /* تدرجات الرمادي المعدلة */
  --gray-50: #f8f5f0;
  --gray-100: #f1ede5;
  --gray-200: #e8e1d7;
  --gray-300: #d4cdc2;
  --gray-400: #a8a195;
  --gray-500: #857d72;
  --gray-600: #665f56;
  --gray-700: #4a443d;
  --gray-800: #322e29;
  --gray-900: #1c1a17;
  
  /* الظلال المعدلة */
  --shadow-soft: 0 2px 20px rgba(0, 38, 35, 0.08);
  --shadow-medium: 0 8px 30px rgba(0, 38, 35, 0.12);
  --shadow-strong: 0 15px 40px rgba(0, 38, 35, 0.15);
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
  :root {
    --white: #121212;
    --bg-light: #1a1a1a;
    --forest: #004d40;
    --emerald-shadow: #00695c;
    --gray-50: #212121;
    --gray-100: #2a2a2a;
    --gray-200: #3a3a3a;
    --gray-300: #4a4a3a;
    --gray-400: #6a6a5a;
    --gray-500: #8a8a7a;
    --gray-600: #aaaa9a;
    --gray-700: #ccccba;
    --gray-800: #eeeede;
    --gray-900: #ffffff;
    --text-dark: var(--mountain-teal);
    --shadow-soft: 0 2px 20px rgba(0, 0, 0, 0.3);
    --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.4);
    --shadow-strong: 0 15px 40px rgba(0, 0, 0, 0.5);
  }
}

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

body {
  font-family: 'Cairo', sans-serif;
  line-height: 1.7;
  color: var(--gray-800);
  background: linear-gradient(135deg, var(--bg-light) 0%, var(--white) 100%);
  overflow-x: hidden;
}

/* Header */
.header {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-soft);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-bottom: 1px solid rgba(185, 167, 121, 0.1);
  padding: 8px 0; /* تم التعديل من 15px إلى 8px */
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.99);
  box-shadow: var(--shadow-medium);
  border-bottom: 1px solid var(--golden-wheat);
  padding: 5px 0; /* تم التعديل من 10px إلى 5px */
}

/* روابط القائمة */
.navbar-nav .nav-link {
  font-weight: 500;
  font-size: 1.1rem;
  margin: 0 10px;
  color: var(--gray-700) !important;
  transition: all 0.3s ease;
  position: relative;
  padding: 5px 0 !important; /* تم التعديل من 10px إلى 5px */
}

/* زر تقديم بلاغ */
.btn-primary-custom {
    background: linear-gradient(135deg, var(--forest) 0%, var(--emerald-shadow) 50%, var(--mountain-teal) 100%);
    border: 2px solid var(--forest);
    padding: 8px 24px; /* تم تقليل الـ padding من 12px 28px */
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    color: var(--white);
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(0, 38, 35, 0.3);
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 130px; /* تم تعديله ليتناسب مع الحجم الجديد */
}

.navbar-nav .nav-link::before {
  content: '';
  position: absolute;
  width: 0;
  height: 3px;
  bottom: 0;
  right: 50%;
  background: linear-gradient(90deg, var(--forest), var(--golden-wheat));
  transition: all 0.4s ease;
  border-radius: 3px;
}

.navbar-nav .nav-link:hover::before,
.navbar-nav .nav-link.active::before {
  width: 100%;
  right: 0;
}

.navbar-nav .nav-link:hover {
  color: var(--forest) !important;
  transform: translateY(-2px);
}

.btn-primary-custom::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(185, 167, 121, 0.2), transparent);
  transition: left 0.6s ease;
}

.btn-primary-custom:hover::before {
  left: 100%;
}

.btn-primary-custom:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 35px rgba(0, 38, 35, 0.4);
  color: var(--white);
  border-color: var(--golden-wheat);
}

.btn-primary-custom i { margin-left: 10px; }

/* Dashboard Button */
.btn-dashboard-custom {
    background: linear-gradient(135deg, var(--deep-umber), var(--damask-red));
    border: 2px solid var(--deep-umber);
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(107, 31, 42, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-width: 140px;
    justify-content: center;
}

.btn-dashboard-custom:hover {
  background: linear-gradient(135deg, var(--damask-red), var(--deep-umber));
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(107, 31, 42, 0.4);
  color: var(--white);
  border-color: var(--golden-wheat);
}

/* Login Button */
.btn-login-custom {
    background: transparent;
    border: 2px solid var(--golden-wheat);
    padding: 8px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    color: var(--forest);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-width: 130px;
    justify-content: center;
}

.btn-login-custom:hover {
  background: linear-gradient(135deg, var(--golden-wheat), var(--antique-sand));
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(185, 167, 121, 0.3);
  color: var(--forest);
  border-color: var(--golden-wheat);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, 
    var(--primary-dark) 0%, 
    var(--forest) 25%, 
    var(--emerald-shadow) 50%, 
    var(--mountain-teal) 75%, 
    var(--deep-umber) 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 100px;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="grid" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M 50 0 L 0 0 0 50" fill="none" stroke="rgba(185, 167, 121, 0.03)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
}

.hero::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(185, 167, 121, 0.05) 0%, transparent 70%);
  animation: float 20s ease-in-out infinite;
}

.gap-3 { gap: 1rem !important; }
.gap-4 { gap: 1.5rem !important; }
.gap-5 { gap: 2rem !important; }

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

@media (min-width: 992px) {
  .logo-clean {
      height: 75px; 
      width: auto;
      object-fit: contain;
    }
}

.hero-content {
  position: relative;
  z-index: 3;
  color: var(--white);
}

.hero h1 {
  font-family: 'Cairo', sans-serif;
  font-size: 4rem;
  font-weight: 900;
  margin-bottom: 25px;
  text-shadow: 0 4px 20px rgba(0,0,0,0.3);
  background: linear-gradient(135deg, #ffffff 0%, var(--golden-wheat) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.hero p {
  font-size: 1.4rem;
  margin-bottom: 35px;
  opacity: 0.95;
  text-shadow: 0 2px 10px rgba(0,0,0,0.2);
  line-height: 1.8;
  color: var(--ivory-mist);
}

.hero-stats {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border-radius: 25px;
  padding: 40px 30px;
  margin-top: 60px;
  border: 1px solid rgba(185, 167, 121, 0.2);
  box-shadow: var(--shadow-strong);
}

.stat-item {
  text-align: center;
  color: var(--white);
  position: relative;
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 900;
  display: block;
  margin-bottom: 15px;
  background: linear-gradient(135deg, var(--golden-wheat) 0%, var(--antique-sand) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 1.2rem;
  opacity: 0.9;
  font-weight: 500;
  color: var(--ivory-mist);
}

.btn-group-hero {
  display: flex;
  gap: 20px;
  margin-top: 35px;
  flex-wrap: wrap;
}

.btn-secondary-custom {
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(185, 167, 121, 0.3);
  padding: 14px 35px;
  border-radius: 50px;
  font-weight: 600;
  color: var(--white);
  text-decoration: none;
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-secondary-custom:hover {
  background: rgba(185, 167, 121, 0.3);
  border-color: rgba(185, 167, 121, 0.5);
  color: var(--white);
  transform: translateY(-3px);
}

/* Services Section */
.services {
  padding: 120px 0;
  background: linear-gradient(180deg, var(--bg-light) 0%, var(--white) 100%);
  position: relative;
}

.services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--golden-wheat) 50%, transparent 100%);
}

.section-title {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
}

.section-title h2 {
  font-family: 'Cairo', sans-serif;
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--forest);
  margin-bottom: 25px;
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 5px;
  background: linear-gradient(90deg, var(--forest), var(--golden-wheat), var(--damask-red));
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 3px;
}

.section-title p {
  font-size: 1.3rem;
  color: var(--gray-600);
  max-width: 700px;
  margin: 50px auto 0;
  line-height: 1.8;
}

.service-card {
  background: linear-gradient(135deg, var(--white) 0%, var(--gray-50) 100%);
  padding: 50px 35px;
  border-radius: 25px;
  box-shadow: var(--shadow-soft);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  border: 1px solid var(--gray-200);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, var(--forest), var(--golden-wheat), var(--damask-red));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: var(--shadow-strong);
  border-color: var(--golden-wheat);
}

.service-icon {
  width: 85px;
  height: 85px;
  background: linear-gradient(135deg, var(--forest), var(--emerald-shadow));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 35px;
  font-size: 2.2rem;
  color: var(--white);
  box-shadow: 0 10px 30px rgba(0, 38, 35, 0.3);
  transition: all 0.4s ease;
  border: 2px solid var(--golden-wheat);
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 15px 40px rgba(0, 38, 35, 0.4);
  background: linear-gradient(135deg, var(--deep-umber), var(--damask-red));
}

.service-card h4 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 25px;
  text-align: center;
}

.service-card p {
  color: var(--gray-600);
  text-align: center;
  line-height: 1.9;
  font-size: 1.1rem;
}

/* Process Section */
.process {
  padding: 120px 0;
  background: linear-gradient(135deg, var(--white) 0%, var(--bg-light) 100%);
  position: relative;
}

.process-timeline {
  position: relative;
  margin-top: 60px;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 60px;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--forest), var(--golden-wheat), var(--damask-red));
  border-radius: 2px;
  z-index: 1;
}

.process-step {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  z-index: 2;
}

.process-number {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--forest), var(--emerald-shadow));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 800;
  margin: 0 auto 25px;
  box-shadow: 0 10px 30px rgba(0, 38, 35, 0.3);
  border: 5px solid var(--white);
  transition: all 0.4s ease;
}

.process-step:hover .process-number {
  transform: scale(1.2);
  box-shadow: 0 15px 40px rgba(0, 38, 35, 0.4);
  background: linear-gradient(135deg, var(--deep-umber), var(--damask-red));
}

.process-step h4 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 20px;
}

.process-step p {
  color: var(--gray-600);
  max-width: 300px;
  margin: 0 auto;
  line-height: 1.8;
  font-size: 1.1rem;
}

/* CTA Section */
.cta {
  background: linear-gradient(135deg, 
    var(--primary-dark) 0%, 
    var(--forest) 25%, 
    var(--deep-umber) 50%, 
    var(--black-cherry) 75%, 
    var(--damask-red) 100%);
  padding: 100px 0;
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(185, 167, 121, 0.1) 0%, transparent 70%);
  animation: rotate 30s linear infinite;
}

@keyframes rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta h2 {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 25px;
  text-shadow: 0 4px 20px rgba(0,0,0,0.3);
  background: linear-gradient(135deg, var(--golden-wheat) 0%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta p {
  font-size: 1.3rem;
  margin-bottom: 45px;
  opacity: 0.95;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
  color: var(--ivory-mist);
}

.btn-cta {
  background: var(--golden-wheat);
  color: var(--forest);
  padding: 18px 50px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(185, 167, 121, 0.4);
  position: relative;
  z-index: 3;
  border: 3px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn-cta:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 20px 40px rgba(185, 167, 121, 0.5);
  color: var(--forest);
  border-color: rgba(255,255,255,0.3);
  background: linear-gradient(135deg, var(--golden-wheat), var(--antique-sand));
}

/* ================================================ */
/* FOOTER STYLES - IMPROVED                      */
/* ================================================ */
.footer {
  background: linear-gradient(145deg, #001814 0%, var(--forest) 50%, var(--emerald-shadow) 100%);
  color: var(--ivory-mist);
  padding: 40px 0 20px;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, 
    var(--golden-wheat), 
    var(--mountain-teal), 
    var(--damask-red),
    var(--golden-wheat));
  z-index: 2;
}

.footer::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(185, 167, 121, 0.3), transparent);
}

/* Animated Logo */
.logo-container {
  position: relative;
  width: 120px;
  height: 120px;
  margin-bottom: 25px;
}

.animated-logo {
  width: 100%;
  height: 100%;
  position: relative;
  animation: logoFloat 8s ease-in-out infinite;
}

@keyframes logoFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(5deg); }
}

.logo-outer-ring {
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border: 2px solid var(--golden-wheat);
  border-radius: 20px;
  animation: outerRingRotate 20s linear infinite;
  opacity: 0.5;
}

@keyframes outerRingRotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.logo-middle-ring {
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border: 1px solid rgba(185, 167, 121, 0.3);
  border-radius: 18px;
  animation: middleRingRotate 15s linear infinite reverse;
}

.logo-core {
  width: 100%;
  height: 100%;
  border-radius: 15px;
  overflow: hidden;
  border: 3px solid var(--golden-wheat);
  background: transparent !important;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 20px rgba(185, 167, 121, 0.2), 0 0 40px rgba(185, 167, 121, 0.1);
  transition: all 0.3s ease;
}

.logo-core:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(185, 167, 121, 0.4), 0 0 60px rgba(185, 167, 121, 0.2);
}

.logo-core img {
     width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 5px;
    background: transparent !important;
}

.services .logo-img, .services .logo-img img, .cta .logo-img, .cta .logo-img img {
    background: transparent !important;
}

/* Sparkles */
.logo-sparkle {
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--golden-wheat);
  border-radius: 50%;
  filter: blur(1px);
  animation: sparkleTwinkle 3s ease-in-out infinite;
}

#sparkle1 { top: -15px; right: 30%; animation-delay: 0s; }
#sparkle2 { bottom: -15px; left: 30%; animation-delay: 1s; }
#sparkle3 { top: 50%; left: -15px; animation-delay: 2s; }

@keyframes sparkleTwinkle {
  0%, 100% { opacity: 0.3; transform: scale(0.8); }
  50% { opacity: 1; transform: scale(1.2); }
}

/* Footer Brand */
.footer-brand { position: relative; z-index: 1; }
.footer-title { color: var(--white); margin-bottom: 20px; }
.title-main {
  display: block; font-size: 1.8rem; font-weight: 800;
  background: linear-gradient(135deg, var(--white) 0%, var(--golden-wheat) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.title-sub { display: block; font-size: 1.4rem; color: var(--golden-wheat); font-weight: 600; }
.footer-description { color: rgba(255, 255, 255, 0.8); line-height: 1.8; font-size: 0.95rem; margin-bottom: 25px; }

/* Social Icons */
.footer-social { display: flex; gap: 15px; }
.social-icon {
  width: 40px; height: 40px; border-radius: 10px; background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(185, 167, 121, 0.2); display: flex; align-items: center; justify-content: center;
  color: var(--golden-wheat); text-decoration: none; transition: all 0.3s ease; position: relative; overflow: hidden;
}
.social-icon::before {
  content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent); transition: left 0.6s ease;
}
.social-icon:hover::before { left: 100%; }
.social-icon:hover { background: rgba(185, 167, 121, 0.2); border-color: var(--golden-wheat); transform: translateY(-3px); color: var(--white); }

/* Footer Headings */
.footer-heading {
  color: var(--golden-wheat); font-weight: 700; font-size: 1.3rem;
  margin-bottom: 25px; position: relative; padding-bottom: 10px;
}
.footer-heading::after {
  content: ''; position: absolute; bottom: 0; right: 0; width: 50px; height: 3px;
  background: linear-gradient(90deg, var(--golden-wheat), transparent); border-radius: 2px;
}

/* Footer Links */
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 15px; }
.footer-link {
  color: rgba(255, 255, 255, 0.8); text-decoration: none; display: flex;
  align-items: center; gap: 12px; transition: all 0.3s ease; position: relative; padding: 8px 0;
}
.link-icon { color: var(--golden-wheat); font-size: 1.1rem; transition: all 0.3s ease; }
.link-text { flex: 1; }
.link-underline {
  position: absolute; bottom: 0; right: 0; width: 0; height: 2px;
  background: linear-gradient(90deg, var(--golden-wheat), transparent); transition: width 0.3s ease; border-radius: 1px;
}
.footer-link:hover { color: var(--white); transform: translateX(-5px); }
.footer-link:hover .link-icon { transform: scale(1.2); color: var(--white); }
.footer-link:hover .link-underline { width: 100%; }

/* Contact Info */
.contact-info { display: flex; flex-direction: column; gap: 10px; }
.contact-item { display: flex; align-items: flex-start; gap: 15px; }
.contact-icon, .hour-icon {
  width: 36px; height: 36px; border-radius: 8px; background: rgba(185, 167, 121, 0.1);
  border: 1px solid rgba(185, 167, 121, 0.2); display: flex; align-items: center;
  justify-content: center; color: var(--golden-wheat); flex-shrink: 0;
}
.contact-text, .hour-details { flex: 1; }
.contact-text strong, .hour-details strong { color: var(--white); display: inline; margin-bottom: 5px; font-size: 0.9rem; }
.contact-text span { color: rgba(255, 255, 255, 0.8); font-size: 0.9rem; line-height: 1.6; }

/* Working Hours */
.work-hours { display: flex; flex-direction: column; gap: 20px; }
.hour-item { display: flex; align-items: flex-start; gap: 15px; }
.hour-time { color: rgba(255, 255, 255, 0.8); font-size: 0.9rem; }
.status-badge {
  background: linear-gradient(135deg, rgba(40, 167, 69, 0.2), rgba(40, 167, 69, 0.1));
  color: #28a745; padding: 4px 12px; border-radius: 20px; font-size: 0.8rem;
  font-weight: 600; border: 1px solid rgba(40, 167, 69, 0.3); display: inline-block;
}

/* Footer Bottom */
.footer-bottom { padding-top: 10px; border-top: 1px solid rgba(185, 167, 121, 0.1); position: relative; }
.divider-line { display: flex; justify-content: center; align-items: center; gap: 10px; margin-bottom: 30px; }
.divider-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--golden-wheat); animation: dotPulse 2s ease-in-out infinite; }
.divider-dot:nth-child(2) { animation-delay: 0.5s; }
.divider-dot:nth-child(3) { animation-delay: 1s; }
@keyframes dotPulse {
  0%, 100% { opacity: 0.3; transform: scale(0.8); }
  50% { opacity: 1; transform: scale(1.2); }
}
.copyright, .dev-team { color: rgba(255, 255, 255, 0.7); font-size: 0.9rem; margin: 0; }
.highlight { color: var(--golden-wheat); font-weight: 600; }
.team-name {
  color: var(--golden-wheat); font-weight: 700;
  background: linear-gradient(135deg, var(--golden-wheat) 0%, var(--antique-sand) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* Floating Action Button */
.floating-report-btn {
  position: fixed; bottom: 30px; left: 30px; z-index: 1000; width: 80px; height: 80px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--forest), var(--damask-red)); color: white;
  font-size: 2rem; box-shadow: 0 8px 25px rgba(0, 38, 35, 0.4); transition: all 0.4s ease;
  text-decoration: none; border: 4px solid var(--white);
}
.floating-report-btn:hover {
  transform: scale(1.15) translateY(-5px); box-shadow: 0 15px 35px rgba(0, 38, 35, 0.5);
  color: white; background: linear-gradient(135deg, var(--damask-red), var(--forest));
}
.floating-report-btn::before {
  content: ''; position: absolute; top: -5px; left: -5px; right: -5px; bottom: -5px;
  border-radius: 50%; border: 2px solid var(--golden-wheat); animation: pulse-ring 2s infinite;
}
@keyframes pulse-ring { 0% { transform: scale(1); opacity: 1; } 100% { transform: scale(1.5); opacity: 0; } }

/* Back to Top Button */
.back-to-top {
  position: fixed; bottom: 30px; left: 30px; width: 50px; height: 50px;
  background: linear-gradient(135deg, var(--forest), var(--damask-red));
  border: 2px solid var(--golden-wheat); border-radius: 50%; color: white;
  display: flex; align-items: center; justify-content: center; cursor: pointer;
  opacity: 0; visibility: hidden; transform: translateY(20px); transition: all 0.3s ease;
  z-index: 999; box-shadow: 0 4px 15px rgba(0, 38, 35, 0.3);
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover {
  transform: translateY(-5px); box-shadow: 0 8px 25px rgba(0, 38, 35, 0.4);
  background: linear-gradient(135deg, var(--damask-red), var(--forest));
}

/* ================================================ */
/* HEADER RESPONSIVE - IMPROVED                  */
/* ================================================ */
@media (max-width: 991.98px) {
  .header .navbar-collapse {
    background: rgba(255, 255, 255, 0.99);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 1.25rem;
    margin-top: 0.75rem;
    box-shadow: var(--shadow-medium);
    border: 1px solid var(--gray-200);
    max-height: 80vh;
    overflow-y: auto;
  }

  .header .navbar-collapse .navbar-nav {
    width: 100%;
    text-align: center;
    margin: 0;
  }

  .header .navbar-collapse .nav-link {
    text-align: center;
    padding: 0.75rem 1rem !important;
    margin: 0.25rem 0;
    border-radius: 12px;
    font-size: 1.05rem;
  }

  .header .navbar-collapse .nav-link:hover {
    background: var(--gray-50);
  }

  .header .navbar-collapse .d-flex.align-items-center.gap-3 {
    flex-direction: column !important;
    width: 100%;
    gap: 0.75rem !important;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--gray-200);
  }

  .header .navbar-collapse .btn-primary-custom,
  .header .navbar-collapse .btn-login-custom,
  .header .navbar-collapse .btn-dashboard-custom {
    width: 100%;
    min-width: unset;
    justify-content: center;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 { font-size: 2.8rem; }
  .hero p { font-size: 1.2rem; }
  .section-title h2 { font-size: 2.5rem; }
  .navbar-nav { margin-top: 20px; }
  .hero-stats { margin-top: 40px; padding: 30px 20px; }
  .floating-report-btn, .back-to-top { bottom: 20px; left: 20px; width: 60px; height: 60px; font-size: 1.5rem; }
  .back-to-top { left: 90px; }
  .btn-group-hero { flex-direction: column; align-items: center; }
  .process-timeline::before { display: none; }
  .btn-dashboard-custom { margin-top: 10px; margin-right: 0; width: 100%; justify-content: center; }
  .footer { padding: 60px 0 30px; }
  .logo-container { width: 100px; height: 100px; margin: 0 auto 20px; }
  .footer-heading { text-align: center; }
  .footer-heading::after { right: 50%; transform: translateX(50%); }
  .footer-links, .contact-info, .work-hours { text-align: center; }
  .contact-item, .hour-item, .footer-link { justify-content: center; }
  .logo-clean{
    height: 55px;
  }
  .hero{
    padding-top: 125px;
  }
}

@media (max-width: 576px) {
  .logo-container { width: 80px; height: 80px; }
  .title-main { font-size: 1.5rem; }
  .title-sub { font-size: 1.2rem; }
  .social-icon { width: 35px; height: 35px; }
  .back-to-top { left: 80px; width: 45px; height: 45px; }
  .logo-clean {
    height: 42px;
  }
}

/* Animation */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInLeft { from { opacity: 0; transform: translateX(-40px); } to { opacity: 1; transform: translateX(0); } }
@keyframes fadeInRight { from { opacity: 0; transform: translateX(40px); } to { opacity: 1; transform: translateX(0); } }
.fade-in-up { animation: fadeInUp 0.8s ease forwards; }
.fade-in-left { animation: fadeInLeft 0.8s ease forwards; }
.fade-in-right { animation: fadeInRight 0.8s ease forwards; }
.stagger-1 { animation-delay: 0.1s; }
.stagger-2 { animation-delay: 0.2s; }
.stagger-3 { animation-delay: 0.3s; }
.stagger-4 { animation-delay: 0.4s; }

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
  .footer { background: linear-gradient(145deg, #000000 0%, #001814 50%, #002623 100%); }
  .logo-core { background: #1a1a1a; }
  .social-icon { background: rgba(255, 255, 255, 0.05); }
}


/* Extracted from original inline styles */
.inline-ref-1{width:80px;height:80px}
.inline-ref-2{width:100%;height:100%;object-fit:contain}
.inline-ref-3{width:100px;height:100px;border-radius:20px}
.inline-ref-4{width:100%;height:100%;object-fit:contain}
.inline-ref-5{width:120px;height:120px;border-radius:25px;border:3px solid var(--golden-wheat)}
.inline-ref-6{width:100%;height:100%;object-fit:contain}
