/* ============================================
   Lawyer Mohammed AlShlawi - Complete Stylesheet
   Professional Edition with Enhanced Animations
   ============================================ */

/* ========== CSS Variables ========== */
:root {
  --color-primary: #1a6667;
  --color-primary-dark: #135052;
  --color-primary-light: #25898a;
  --color-primary-very-light: #e8f4f4;
  --color-gold: #CDB89A;
  --color-gold-light: #E5D5BE;
  --color-gold-dark: #A8956E;
  --color-light-gray: #F8F9FA;
  --color-white: #FFFFFF;
  --color-dark: #1A1A2E;
  --color-dark-light: #2D2D44;
  --color-text: #2C3E50;
  --color-text-light: #5D6D7E;
  --color-success: #28a745;
  --color-danger: #dc3545;
  --color-warning: #ffc107;
  --font-arabic: 'Cairo', 'IBM Plex Sans Arabic', 'Tajawal', sans-serif;
  --font-heading: 'Cairo', 'Tajawal', sans-serif;
  --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-bounce: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  --shadow-soft: 0 10px 40px rgba(26,102,103,0.08);
  --shadow-gold: 0 10px 30px rgba(205,184,154,0.15);
  --shadow-card: 0 5px 20px rgba(0,0,0,0.05);
  --shadow-lg: 0 15px 50px rgba(0,0,0,0.1);
  --shadow-3d: 0 20px 60px rgba(26,102,103,0.15), 0 8px 20px rgba(0,0,0,0.08);
  --border-radius: 16px;
  --border-radius-sm: 12px;
  --border-radius-xs: 8px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-arabic);
  background-color: var(--color-white);
  color: var(--color-text);
  line-height: 1.8;
  overflow-x: hidden;
  min-height: 100vh;
}
a { text-decoration: none; color: inherit; transition: var(--transition-smooth); }
img { max-width: 100%; height: auto; }

/* ========== Loading Screen ========== */
.loading-screen {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 50%, #0d3d3e 100%);
  z-index: 10000; display: flex; justify-content: center; align-items: center;
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  flex-direction: column; overflow: hidden;
}
.loading-screen.hide { opacity: 0; visibility: hidden; }
.loading-logo {
  width: 70vw; max-width: 380px; height: auto; margin-bottom: 2.5rem;
  animation: logoReveal 1.2s ease-out forwards, logoFloat 3s ease-in-out infinite 1.2s;
  opacity: 0; transform: scale(0.8);
}
.loading-logo img { width: 100%; height: auto; display: block; filter: drop-shadow(0 0 40px rgba(205,184,154,0.4)); }
@keyframes logoReveal { 0% { opacity: 0; transform: scale(0.8) translateY(20px); } 100% { opacity: 1; transform: scale(1) translateY(0); } }
@keyframes logoFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
.loading-bar-container {
  width: 70vw; max-width: 300px; height: 6px; background: rgba(205,184,154,0.15);
  border-radius: 10px; overflow: hidden; margin-top: 1.5rem; position: relative;
}
.loading-bar {
  height: 100%; width: 0%; background: linear-gradient(90deg, var(--color-gold), var(--color-gold-light), var(--color-gold));
  background-size: 200% 100%; border-radius: 10px;
  animation: loadingProgress 2.2s cubic-bezier(0.4, 0, 0.2, 1) forwards, shimmer 1.5s ease-in-out infinite 2.2s;
  position: relative;
}
.loading-bar::after { content: ''; position: absolute; top: 0; right: 0; width: 40px; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
  animation: barShine 1.5s ease-in-out infinite;
}
@keyframes loadingProgress { 0% { width: 0%; } 30% { width: 50%; } 60% { width: 80%; } 100% { width: 100%; } }
@keyframes shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }
@keyframes barShine { 0% { transform: translateX(100%); } 100% { transform: translateX(-300%); } }
.loading-text { color: var(--color-gold-light); font-size: 1rem; margin-top: 1.5rem; font-weight: 600;
  opacity: 0; animation: textFadeIn 0.6s ease forwards 0.5s; letter-spacing: 1px;
}
.loading-subtext { color: rgba(255,255,255,0.5); font-size: 0.8rem; margin-top: 0.5rem; opacity: 0; animation: textFadeIn 0.6s ease forwards 0.8s; }
@keyframes textFadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.pattern-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"%3E%3Cpath fill="%23CDB89A" fill-opacity="0.06" d="M50 0 L100 50 L50 100 L0 50 Z"/%3E%3Cpath fill="%23CDB89A" fill-opacity="0.04" d="M50 20 L80 50 L50 80 L20 50 Z"/%3E%3Ccircle cx="50" cy="50" r="10" fill="%23CDB89A" fill-opacity="0.05"/%3E%3C/svg%3E');
  background-size: 80px 80px; animation: slowDrift 25s linear infinite; pointer-events: none;
}
@keyframes slowDrift { 0% { background-position: 0 0; } 100% { background-position: 160px 160px; } }
.loading-particles { position: absolute; width: 100%; height: 100%; pointer-events: none; overflow: hidden; }
.loading-particles::before, .loading-particles::after { content: ''; position: absolute; width: 8px; height: 8px; background: var(--color-gold); border-radius: 50%; opacity: 0; animation: particleFloat 3s ease-in-out infinite; }
.loading-particles::before { top: 30%; left: 20%; animation-delay: 0s; }
.loading-particles::after { top: 60%; right: 20%; animation-delay: 1.5s; }
@keyframes particleFloat { 0%, 100% { opacity: 0; transform: translateY(0) scale(0); } 50% { opacity: 0.6; transform: translateY(-30px) scale(1); } }

/* ========== Pattern Accents ========== */
.pattern-accent { position: absolute; width: 250px; height: 250px;
  background-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"%3E%3Cpath fill="%23CDB89A" fill-opacity="0.06" d="M50 0 L100 50 L50 100 L0 50 Z"/%3E%3Cpath fill="%23CDB89A" fill-opacity="0.04" d="M50 20 L80 50 L50 80 L20 50 Z"/%3E%3C/svg%3E');
  background-size: 100px 100px; pointer-events: none; z-index: 0; animation: floatPattern 15s ease-in-out infinite;
}
@keyframes floatPattern { 0%, 100% { transform: translate(0, 0) rotate(0deg); } 50% { transform: translate(10px, -10px) rotate(5deg); } }
.pattern-accent-top { top: 0; right: 0; }
.pattern-accent-mid { top: 50%; left: 0; transform: translateY(-50%); }
.pattern-accent-bottom { bottom: 0; right: 20%; }

/* ========== Navbar ========== */
.navbar { background: #25898a !important; backdrop-filter: blur(12px); padding: 0.8rem 0;
  transition: var(--transition-smooth); box-shadow: 0 2px 20px rgba(0,0,0,0.08); border-bottom: 1px solid rgba(255,255,255,0.1);
}
.navbar.scrolled { padding: 0.5rem 0; box-shadow: 0 4px 25px rgba(0,0,0,0.12); background: rgba(37, 137, 138, 0.98) !important; }
.navbar-brand { font-family: var(--font-heading); font-weight: 700; font-size: 0; padding: 0; margin: 0; transition: var(--transition-smooth); }
.navbar-brand:hover { transform: scale(1.05); }
.navbar-brand img { height: 50px; width: auto; transition: var(--transition-smooth); display: block; }
.navbar.scrolled .navbar-brand img { height: 44px; }
.nav-link { font-family: var(--font-arabic); font-weight: 600; font-size: 0.95rem; color: rgba(255,255,255,0.9) !important;
  padding: 0.5rem 1.1rem !important; position: relative; transition: var(--transition-smooth); border-radius: 8px; margin: 0 2px;
}
.nav-link::after { content: ''; position: absolute; bottom: 0; right: 50%; width: 0; height: 2px; background: var(--color-gold);
  transition: var(--transition-smooth); transform: translateX(50%); border-radius: 2px;
}
.nav-link:hover::after, .nav-link.active::after { width: 70%; }
.nav-link:hover { color: var(--color-white) !important; background: rgba(255,255,255,0.1); }
.nav-link.active { color: var(--color-gold) !important; background: rgba(255,255,255,0.08); }

/* ========== Buttons ========== */
.btn-premium { display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem;
  padding: 0.8rem 2rem; font-family: var(--font-arabic); font-weight: 600; font-size: 0.9rem;
  border-radius: 50px; border: none; cursor: pointer; transition: var(--transition-smooth); text-decoration: none;
  position: relative; overflow: hidden;
}
.btn-premium::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.5s ease;
}
.btn-premium:hover::before { left: 100%; }
.btn-primary-custom { background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  color: var(--color-white); box-shadow: 0 4px 15px rgba(26,102,103,0.3);
}
.btn-primary-custom:hover { background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary));
  color: var(--color-white); transform: translateY(-3px); box-shadow: 0 8px 25px rgba(26,102,103,0.4);
}
.btn-gold-custom { background: transparent; color: var(--color-gold-light); border: 2px solid var(--color-gold); }
.btn-gold-custom:hover { background: var(--color-gold); color: var(--color-dark); transform: translateY(-3px); box-shadow: 0 8px 25px rgba(205,184,154,0.3); }
.btn-white-custom { background: var(--color-white); color: var(--color-primary); box-shadow: 0 4px 15px rgba(0,0,0,0.08); }
.btn-white-custom:hover { background: var(--color-light-gray); transform: translateY(-3px); box-shadow: 0 8px 25px rgba(0,0,0,0.12); }
.btn-outline-custom { background: transparent; color: var(--color-primary); border: 2px solid var(--color-primary); }
.btn-outline-custom:hover { background: var(--color-primary); color: var(--color-white); transform: translateY(-3px); box-shadow: 0 8px 25px rgba(26,102,103,0.2); }

/* ========== Hero Section ========== */
.hero-section { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; padding: 120px 0 80px; }
.hero-video { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(135deg, rgba(37,137,138,0.92) 0%, rgba(26,102,103,0.85) 50%, rgba(19,80,82,0.9) 100%); z-index: 1;
}
.hero-overlay::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: radial-gradient(ellipse at 30% 50%, rgba(205,184,154,0.1) 0%, transparent 60%);
}
.hero-content { position: relative; z-index: 2; color: var(--color-white); }
.hero-title { font-family: var(--font-heading); font-size: clamp(2.2rem, 5.5vw, 4rem); font-weight: 800; line-height: 1.2;
  margin-bottom: 1.2rem; animation: fadeInUp 1s ease forwards; opacity: 0; text-shadow: 0 2px 20px rgba(0,0,0,0.2);
}
.hero-title .gold-text { color: var(--color-gold); position: relative; display: inline-block; }
.hero-title .gold-text::after { content: ''; position: absolute; bottom: -5px; right: 0; width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--color-gold), transparent); border-radius: 3px;
}
.hero-subtitle { font-size: clamp(1rem, 2.5vw, 1.3rem); font-weight: 400; opacity: 0.9; margin-bottom: 1.5rem;
  animation: fadeInUp 1s ease 0.2s forwards; opacity: 0; line-height: 1.8;
}
.hero-slogan { font-size: 1.1rem; margin-bottom: 2rem; position: relative; padding-right: 1.2rem;
  border-right: 3px solid var(--color-gold); display: inline-block; animation: fadeInUp 1s ease 0.4s forwards;
  opacity: 0; color: var(--color-gold-light);
}
.hero-buttons { animation: fadeInUp 1s ease 0.6s forwards; opacity: 0; }
.hero-stats { display: flex; gap: 2.5rem; margin-top: 3rem; flex-wrap: wrap; animation: fadeInUp 1s ease 0.8s forwards; opacity: 0; }
.hero-stat { text-align: center; padding: 1rem 1.5rem; background: rgba(255,255,255,0.08); border-radius: var(--border-radius);
  border: 1px solid rgba(205,184,154,0.15); backdrop-filter: blur(10px); transition: var(--transition-smooth);
}
.hero-stat:hover { transform: translateY(-5px); background: rgba(255,255,255,0.12); border-color: rgba(205,184,154,0.3); }
.hero-stat-number { font-size: 2rem; font-weight: 800; color: var(--color-gold); line-height: 1; }
.hero-stat-label { font-size: 0.85rem; opacity: 0.8; margin-top: 0.3rem; }
.hero-decor { position: absolute; z-index: 1; pointer-events: none; }
.hero-decor-1 { top: 20%; right: 10%; width: 300px; height: 300px; border: 1px solid rgba(205,184,154,0.1); border-radius: 50%; animation: rotateSlow 20s linear infinite; }
.hero-decor-2 { top: 30%; right: 15%; width: 200px; height: 200px; border: 1px solid rgba(205,184,154,0.08); border-radius: 50%; animation: rotateSlow 15s linear infinite reverse; }
@keyframes rotateSlow { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

/* ========== Section Styles ========== */
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-label { display: inline-flex; align-items: center; gap: 0.6rem; color: var(--color-gold-dark);
  font-weight: 700; font-size: 0.85rem; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 0.8rem;
}
.section-label .line { width: 35px; height: 2px; background: var(--color-gold); border-radius: 1px; }
.section-title { font-family: var(--font-heading); font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 800; color: var(--color-dark); margin-bottom: 1rem; }
.section-subtitle { color: var(--color-text-light); font-size: 1rem; max-width: 650px; margin: 0 auto; }

/* ========== About Section ========== */
.about-section { padding: 5rem 0; position: relative; background: var(--color-white); }
.about-image { border-radius: var(--border-radius); overflow: hidden; box-shadow: var(--shadow-3d); position: relative; }
.about-image::before { content: ''; position: absolute; top: -15px; right: -15px; width: 100%; height: 100%;
  border: 2px solid var(--color-gold); border-radius: var(--border-radius); z-index: -1; transition: var(--transition-smooth);
}
.about-image:hover::before { top: -10px; right: -10px; }
.about-image img { width: 100%; height: 450px; object-fit: cover; transition: transform 0.7s ease; }
.about-image:hover img { transform: scale(1.05); }
.experience-badge { background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark)); color: white;
  padding: 1.2rem 1.8rem; border-radius: 16px; display: inline-block; margin-top: 1rem; box-shadow: var(--shadow-soft); transition: var(--transition-smooth);
}
.experience-badge:hover { transform: translateY(-5px) scale(1.05); box-shadow: var(--shadow-lg); }
.experience-badge .years { font-size: 2.2rem; font-weight: 800; line-height: 1; }
.about-features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin-top: 1.5rem; }
.feature-item { display: flex; align-items: center; gap: 0.8rem; padding: 0.7rem 1rem; background: var(--color-light-gray);
  border-radius: var(--border-radius-sm); transition: var(--transition-smooth); border: 1px solid transparent;
}
.feature-item:hover { background: var(--color-primary-very-light); transform: translateX(-5px); border-color: var(--color-gold); box-shadow: 0 4px 15px rgba(26,102,103,0.1); }
.feature-item i { color: var(--color-gold); font-size: 1.1rem; min-width: 24px; text-align: center; }
.feature-item span { font-size: 0.9rem; font-weight: 500; }
.about-text-content { font-size: 1rem; line-height: 2; color: var(--color-text); }
.about-text-content p { margin-bottom: 1rem; }
.about-text-content .highlight { color: var(--color-primary); font-weight: 600; }

/* ========== Services Section ========== */
.services-section { padding: 5rem 0; background: var(--color-light-gray); position: relative; }
.service-card { background: var(--color-white); border-radius: var(--border-radius); padding: 2.5rem 2rem; text-align: center;
  transition: var(--transition-smooth); border: 1px solid rgba(205,184,154,0.12); height: 100%; text-decoration: none;
  display: flex; flex-direction: column; align-items: center; color: inherit; position: relative; overflow: hidden; box-shadow: var(--shadow-card);
}
.service-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-gold)); transform: scaleX(0); transform-origin: right; transition: transform 0.4s ease;
}
.service-card:hover { transform: translateY(-12px); box-shadow: var(--shadow-3d); border-color: rgba(205,184,154,0.3); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon { width: 90px; height: 90px; background: linear-gradient(135deg, var(--color-light-gray), var(--color-primary-very-light));
  border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem;
  transition: var(--transition-bounce); position: relative; border: 3px solid transparent;
}
.service-icon::after { content: ''; position: absolute; width: 100%; height: 100%; border-radius: 50%; border: 2px solid var(--color-gold); opacity: 0; transition: var(--transition-smooth); transform: scale(1.2); }
.service-card:hover .service-icon { background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark)); transform: scale(1.1) rotate(5deg); border-color: var(--color-gold); }
.service-card:hover .service-icon::after { opacity: 1; transform: scale(1.4); animation: iconPulse 1.5s ease-in-out infinite; }
@keyframes iconPulse { 0%, 100% { opacity: 0.3; transform: scale(1.4); } 50% { opacity: 0.6; transform: scale(1.5); } }
.service-icon i { font-size: 2.2rem; color: var(--color-primary); transition: var(--transition-smooth); }
.service-card:hover .service-icon i { color: var(--color-white); transform: scale(1.1); }
.service-card h4 { font-weight: 700; font-size: 1.2rem; margin-bottom: 0.8rem; text-align: center; transition: var(--transition-smooth); }
.service-card:hover h4 { color: var(--color-primary); }
.service-card p { color: var(--color-text-light); font-size: 0.9rem; margin: 0; text-align: center; line-height: 1.8; }
.service-card .service-link { display: inline-flex; align-items: center; gap: 0.4rem; color: var(--color-primary); font-weight: 600;
  font-size: 0.85rem; margin-top: 1.5rem; opacity: 0; transform: translateY(10px); transition: var(--transition-smooth);
  padding: 0.5rem 1rem; border-radius: 20px; background: var(--color-primary-very-light);
}
.service-card:hover .service-link { opacity: 1; transform: translateY(0); }
.service-card .service-link i { transition: transform 0.3s ease; }
.service-card:hover .service-link i { transform: translateX(-5px); }
.service-card::after { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
  background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.03) 50%, transparent 70%);
  transform: rotate(45deg) translateX(-100%); transition: transform 0.6s ease; pointer-events: none;
}
.service-card:hover::after { transform: rotate(45deg) translateX(100%); }

/* Service Detail Page */
.service-detail-hero { position: relative; min-height: 55vh; display: flex; align-items: center;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 50%, #0d3d3e 100%);
  padding: 140px 0 80px; color: var(--color-white); overflow: hidden;
}
.service-detail-hero::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: radial-gradient(ellipse at 70% 50%, rgba(205,184,154,0.15) 0%, transparent 60%);
}
.service-detail-hero .breadcrumb { background: transparent; padding: 0; margin-bottom: 1rem; }
.service-detail-hero .breadcrumb-item, .service-detail-hero .breadcrumb-item a { color: rgba(255,255,255,0.7); font-size: 0.9rem; }
.service-detail-hero .breadcrumb-item.active { color: var(--color-gold); }
.service-detail-hero .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.5); }
.service-detail-hero h1 { font-weight: 800; font-size: clamp(2rem, 4.5vw, 3.2rem); margin-bottom: 1rem; text-shadow: 0 2px 10px rgba(0,0,0,0.2); }
.service-detail-hero p { font-size: 1.1rem; opacity: 0.9; max-width: 700px; line-height: 1.8; }
.service-detail-content { padding: 4rem 0; background: var(--color-white); }
.service-detail-card { background: var(--color-white); border-radius: var(--border-radius); padding: 2.5rem;
  border: 1px solid rgba(205,184,154,0.15); box-shadow: var(--shadow-card); margin-bottom: 2rem; transition: var(--transition-smooth);
}
.service-detail-card:hover { box-shadow: var(--shadow-soft); transform: translateY(-3px); }
.service-detail-card h3 { font-weight: 700; color: var(--color-dark); margin-bottom: 1.5rem; padding-bottom: 0.8rem;
  border-bottom: 2px solid var(--color-gold); display: inline-block;
}
.service-detail-card ul { list-style: none; padding: 0; }
.service-detail-card ul li { padding: 0.8rem 0; padding-right: 2rem; position: relative; border-bottom: 1px solid #f0f0f0;
  font-size: 0.95rem; line-height: 1.8; transition: var(--transition-smooth);
}
.service-detail-card ul li:hover { padding-right: 2.5rem; color: var(--color-primary); }
.service-detail-card ul li:last-child { border-bottom: none; }
.service-detail-card ul li::before { content: '\f00c'; font-family: 'Font Awesome 6 Free'; font-weight: 900;
  position: absolute; right: 0; color: var(--color-gold); font-size: 1rem;
}
.service-sidebar { position: sticky; top: 100px; }
.service-sidebar-card { background: var(--color-white); border-radius: var(--border-radius); padding: 1.5rem;
  border: 1px solid rgba(205,184,154,0.15); box-shadow: var(--shadow-card); margin-bottom: 1.5rem; transition: var(--transition-smooth);
}
.service-sidebar-card:hover { box-shadow: var(--shadow-soft); }
.service-sidebar-card h4 { font-weight: 700; color: var(--color-dark); margin-bottom: 1rem; font-size: 1.1rem; }
.service-sidebar-card .service-list { list-style: none; padding: 0; }
.service-sidebar-card .service-list li { padding: 0.7rem 0; border-bottom: 1px solid #f0f0f0; transition: var(--transition-smooth); }
.service-sidebar-card .service-list li:hover { padding-right: 0.5rem; }
.service-sidebar-card .service-list li:last-child { border-bottom: none; }
.service-sidebar-card .service-list li a { display: flex; align-items: center; gap: 0.6rem; color: var(--color-text);
  font-size: 0.9rem; font-weight: 500; transition: var(--transition-smooth);
}
.service-sidebar-card .service-list li a:hover, .service-sidebar-card .service-list li a.active { color: var(--color-primary); }
.service-sidebar-card .service-list li a i { color: var(--color-gold); font-size: 0.8rem; transition: transform 0.3s ease; }
.service-sidebar-card .service-list li a:hover i { transform: translateX(-3px); }

/* ========== Why Choose Us ========== */
.why-section { padding: 5rem 0; background: var(--color-dark); position: relative; overflow: hidden; }
.why-section .section-title, .why-section .section-label { color: var(--color-white); }
.why-section .section-subtitle { color: rgba(255,255,255,0.6); }
.why-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(205,184,154,0.1); border-radius: var(--border-radius);
  padding: 2.5rem 1.5rem; text-align: center; transition: var(--transition-smooth); height: 100%; position: relative; overflow: hidden;
}
.why-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(135deg, rgba(205,184,154,0.05), transparent); opacity: 0; transition: opacity 0.4s ease;
}
.why-card:hover { transform: translateY(-8px); border-color: rgba(205,184,154,0.3); background: rgba(255,255,255,0.07); }
.why-card:hover::before { opacity: 1; }
.why-icon { width: 70px; height: 70px; background: rgba(205,184,154,0.1); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 1.2rem; transition: var(--transition-bounce); position: relative;
}
.why-card:hover .why-icon { transform: scale(1.1) rotate(10deg); background: rgba(205,184,154,0.2); }
.why-icon i { font-size: 1.8rem; color: var(--color-gold); transition: var(--transition-smooth); }
.why-card:hover .why-icon i { transform: scale(1.1); }
.why-card h4 { color: var(--color-white); font-weight: 700; font-size: 1.1rem; margin-bottom: 0.6rem; }
.why-card p { color: rgba(255,255,255,0.6); font-size: 0.9rem; }

/* ========== Stats Section ========== */
.stats-section { padding: 4rem 0; background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  position: relative; overflow: hidden;
}
.stats-section::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: radial-gradient(ellipse at 50% 0%, rgba(205,184,154,0.1) 0%, transparent 60%);
}
.stat-item { text-align: center; position: relative; z-index: 1; }
.stat-number { font-size: clamp(2.2rem, 5vw, 3.2rem); font-weight: 800; color: var(--color-white); line-height: 1; transition: var(--transition-smooth); }
.stat-item:hover .stat-number { transform: scale(1.1); color: var(--color-gold); }
.stat-number .suffix { color: var(--color-gold); }
.stat-label { color: rgba(255,255,255,0.85); font-size: 0.9rem; margin-top: 0.5rem; }

/* ========== CTA Section ========== */
.cta-section { padding: 4rem 0; background: linear-gradient(135deg, var(--color-dark) 0%, #1a1a2e 100%);
  text-align: center; position: relative; overflow: hidden;
}
.cta-section::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: radial-gradient(ellipse at 50% 50%, rgba(205,184,154,0.05) 0%, transparent 70%);
}
.cta-title { font-size: clamp(1.6rem, 4vw, 2.5rem); font-weight: 800; color: var(--color-white); margin-bottom: 1rem; position: relative; z-index: 1; }
.cta-subtitle { color: rgba(255,255,255,0.7); font-size: 1rem; margin-bottom: 2rem; position: relative; z-index: 1; }

/* ========== Contact Section ========== */
.contact-section { padding: 5rem 0; background: var(--color-white); }
.contact-info-card, .contact-form-card { background: var(--color-white); border-radius: var(--border-radius); padding: 2rem;
  border: 1px solid rgba(205,184,154,0.15); box-shadow: var(--shadow-card); height: 100%; transition: var(--transition-smooth);
}
.contact-info-card:hover, .contact-form-card:hover { box-shadow: var(--shadow-soft); }
.contact-info-item { display: flex; align-items: center; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid #eee; transition: var(--transition-smooth); cursor: pointer; }
.contact-info-item:hover { padding-right: 0.5rem; background: var(--color-light-gray); border-radius: 8px; padding-left: 0.5rem; }
.contact-info-item:last-child { border-bottom: none; }
.contact-info-icon { width: 50px; height: 50px; background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  border-radius: 12px; display: flex; align-items: center; justify-content: center; color: white; flex-shrink: 0; transition: var(--transition-bounce);
}
.contact-info-item:hover .contact-info-icon { transform: scale(1.1) rotate(10deg); box-shadow: 0 4px 15px rgba(26,102,103,0.3); }
.contact-info-item h5 { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.2rem; color: var(--color-dark); }
.contact-info-item a, .contact-info-item p { font-size: 0.9rem; color: var(--color-text); margin: 0; transition: var(--transition-smooth); }
.contact-info-item a:hover { color: var(--color-primary); }
.form-control-custom { width: 100%; padding: 0.9rem 1.2rem; border: 2px solid #e9ecef; border-radius: var(--border-radius-sm);
  font-family: var(--font-arabic); transition: var(--transition-smooth); font-size: 0.95rem; background: var(--color-white);
}
.form-control-custom:focus { outline: none; border-color: var(--color-gold); box-shadow: 0 0 0 4px rgba(205,184,154,0.15); background: var(--color-white); }
.form-control-custom::placeholder { color: #aaa; }
select.form-control-custom { appearance: none; background-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 12 12"%3E%3Cpath fill="%235D6D7E" d="M6 8L1 3h10z"/%3E%3C/svg%3E');
  background-repeat: no-repeat; background-position: left 1rem center; padding-left: 2.5rem;
}
.map-wrapper { margin-top: 2rem; border-radius: var(--border-radius); overflow: hidden; box-shadow: var(--shadow-card); transition: var(--transition-smooth); }
.map-wrapper:hover { box-shadow: var(--shadow-lg); }
.map-wrapper iframe { width: 100%; height: 350px; border: none; display: block; }

/* ========== Footer ========== */
.footer-section { background: var(--color-dark); padding: 3rem 0 1rem; border-top: 1px solid rgba(205,184,154,0.1); position: relative; }
.footer-brand { text-align: center; margin-bottom: 1rem; transition: var(--transition-smooth); }
.footer-brand:hover { transform: scale(1.05); }
.footer-brand img { height: 60px; width: auto; display: block; margin: 0 auto; }
.footer-desc { color: rgba(255,255,255,0.5); font-size: 0.85rem; text-align: center; max-width: 350px; margin: 0 auto 1.5rem; }
.footer-contact { display: flex; justify-content: center; align-items: center; gap: 1rem 1.5rem; flex-wrap: wrap; margin: 0 auto 1.5rem; max-width: 900px; }
.footer-contact a, .footer-contact span { color: rgba(255,255,255,0.55); font-size: 0.85rem; display: inline-flex; align-items: center; gap: 0.45rem; transition: var(--transition-smooth); }
.footer-contact a:hover { color: var(--color-gold); }
.footer-contact i { color: var(--color-gold); }
.footer-social { display: flex; justify-content: center; gap: 0.8rem; margin-bottom: 2rem; }
.footer-social a { width: 42px; height: 42px; border-radius: 50%; background: rgba(255,255,255,0.05);
  display: flex; align-items: center; justify-content: center; color: var(--color-gold); transition: var(--transition-bounce); border: 1px solid rgba(205,184,154,0.1);
}
.footer-social a:hover { background: var(--color-gold); color: var(--color-dark); transform: translateY(-5px) scale(1.1); border-color: var(--color-gold); box-shadow: 0 5px 15px rgba(205,184,154,0.3); }
.footer-links { display: flex; justify-content: center; gap: 1.5rem; margin-bottom: 1.5rem; flex-wrap: wrap; }
.footer-links a { color: rgba(255,255,255,0.5); font-size: 0.85rem; transition: var(--transition-smooth); position: relative; }
.footer-links a::after { content: ''; position: absolute; bottom: -2px; right: 0; width: 0; height: 1px; background: var(--color-gold); transition: width 0.3s ease; }
.footer-links a:hover { color: var(--color-gold); }
.footer-links a:hover::after { width: 100%; }
.footer-bottom { text-align: center; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.05); color: rgba(255,255,255,0.4); font-size: 0.8rem; }

/* ========== Mobile Bottom Bar ========== */
.mobile-bottom-bar { display: none; position: fixed; bottom: 0; left: 0; right: 0; background: rgba(255,255,255,0.98);
  backdrop-filter: blur(12px); box-shadow: 0 -4px 20px rgba(0,0,0,0.1); padding: 0.6rem 1rem; z-index: 999;
  border-top: 1px solid rgba(26,102,103,0.15);
}
.bottom-bar-items { display: flex; justify-content: space-around; align-items: center; }
.bottom-bar-item { display: flex; flex-direction: column; align-items: center; gap: 0.2rem; text-decoration: none;
  transition: var(--transition-smooth); padding: 0.4rem 0; border-radius: 12px; flex: 1; max-width: 80px;
}
.bottom-bar-item i { font-size: 1.3rem; color: var(--color-primary); transition: var(--transition-smooth); }
.bottom-bar-item span { font-size: 0.65rem; color: var(--color-text-light); font-weight: 500; transition: var(--transition-smooth); }
.bottom-bar-item:hover, .bottom-bar-item.active { background: rgba(26,102,103,0.1); }
.bottom-bar-item:hover i, .bottom-bar-item.active i { color: var(--color-primary-dark); transform: scale(1.1); }
.bottom-bar-item:hover span, .bottom-bar-item.active span { color: var(--color-primary); font-weight: 600; }

/* ========== Floating Buttons ========== */
.floating-buttons { position: fixed; left: 20px; bottom: 100px; z-index: 998; display: flex; flex-direction: column; gap: 12px; }
.floating-btn { width: 55px; height: 55px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: white; text-decoration: none; transition: var(--transition-bounce); box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  font-size: 1.5rem; position: relative; overflow: hidden;
}
.floating-btn::before { content: ''; position: absolute; width: 100%; height: 100%; border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.3); opacity: 0; transform: scale(1.2); transition: var(--transition-smooth);
}
.floating-btn:hover::before { opacity: 1; transform: scale(1.5); animation: floatRing 1.5s ease-in-out infinite; }
@keyframes floatRing { 0%, 100% { transform: scale(1.5); opacity: 0.3; } 50% { transform: scale(1.7); opacity: 0.1; } }
.floating-btn.whatsapp { background: linear-gradient(135deg, #25D366, #128C7E); }
.floating-btn.phone { background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark)); }
.floating-btn:hover { transform: scale(1.15) rotate(5deg); box-shadow: 0 6px 25px rgba(0,0,0,0.3); }
.back-to-top { position: fixed; right: 20px; bottom: 100px; width: 50px; height: 50px;
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark)); color: var(--color-dark);
  border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer;
  opacity: 0; visibility: hidden; transition: var(--transition-bounce); z-index: 997; border: none; font-size: 1.2rem;
  box-shadow: 0 4px 15px rgba(205,184,154,0.3);
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { background: linear-gradient(135deg, var(--color-gold-dark), var(--color-gold)); transform: translateY(-5px) scale(1.1); box-shadow: 0 8px 25px rgba(205,184,154,0.4); }

/* ========== Dashboard Styles ========== */
.dashboard-body { background: #f4f6f9; padding-bottom: 0; }
.dashboard-sidebar { position: fixed; top: 0; right: 0; width: 280px; height: 100vh;
  background: linear-gradient(180deg, var(--color-dark) 0%, #1a1a2e 100%); z-index: 1000; overflow-y: auto;
  transition: var(--transition-smooth); padding: 0; box-shadow: 4px 0 20px rgba(0,0,0,0.15);
}
.dashboard-sidebar::-webkit-scrollbar { width: 4px; }
.dashboard-sidebar::-webkit-scrollbar-track { background: transparent; }
.dashboard-sidebar::-webkit-scrollbar-thumb { background: rgba(205,184,154,0.3); border-radius: 2px; }
.dashboard-sidebar-brand { text-align: center; padding: 1.5rem 1rem; border-bottom: 1px solid rgba(255,255,255,0.05); margin-bottom: 1rem; transition: var(--transition-smooth); }
.dashboard-sidebar-brand:hover { background: rgba(255,255,255,0.02); }
.dashboard-sidebar-brand img { height: 55px; width: auto; display: block; margin: 0 auto; }
.dashboard-sidebar-user { text-align: center; padding: 1rem; margin-bottom: 1rem; background: rgba(255,255,255,0.03); border-radius: var(--border-radius); margin: 0 1rem 1rem; }
.dashboard-sidebar-user .avatar { width: 65px; height: 65px; border-radius: 50%; background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  display: flex; align-items: center; justify-content: center; margin: 0 auto 0.5rem; color: white; font-size: 1.5rem; font-weight: 700;
  box-shadow: 0 4px 15px rgba(26,102,103,0.3); border: 2px solid var(--color-gold);
}
.dashboard-sidebar-user .name { color: white; font-weight: 600; font-size: 0.95rem; }
.dashboard-sidebar-user .role { color: var(--color-gold); font-size: 0.8rem; margin-top: 0.2rem; }
.dashboard-sidebar-menu { list-style: none; padding: 0; margin-top: 1rem; }
.dashboard-sidebar-menu li { margin: 0.3rem 0.8rem; }
.dashboard-sidebar-menu li a { display: flex; align-items: center; gap: 0.8rem; padding: 0.85rem 1.2rem;
  color: rgba(255,255,255,0.6); font-size: 0.9rem; font-weight: 500; transition: var(--transition-smooth);
  border-radius: 10px; position: relative; overflow: hidden;
}
.dashboard-sidebar-menu li a::before { content: ''; position: absolute; right: 0; top: 0; width: 0; height: 100%;
  background: linear-gradient(90deg, var(--color-gold), transparent); opacity: 0.1; transition: width 0.3s ease;
}
.dashboard-sidebar-menu li a:hover::before, .dashboard-sidebar-menu li a.active::before { width: 100%; }
.dashboard-sidebar-menu li a:hover, .dashboard-sidebar-menu li a.active { color: white; background: rgba(255,255,255,0.08); }
.dashboard-sidebar-menu li a.active { border-right: 3px solid var(--color-gold); }
.dashboard-sidebar-menu li a i { width: 22px; text-align: center; font-size: 1rem; transition: var(--transition-smooth); }
.dashboard-sidebar-menu li a:hover i, .dashboard-sidebar-menu li a.active i { color: var(--color-gold); transform: scale(1.1); }
.dashboard-sidebar-menu .menu-label { padding: 0.5rem 1.5rem; color: rgba(255,255,255,0.3); font-size: 0.7rem;
  text-transform: uppercase; letter-spacing: 1px; margin-top: 1.5rem; font-weight: 600;
}
.dashboard-main { margin-right: 280px; min-height: 100vh; transition: var(--transition-smooth); }
.dashboard-header { background: white; padding: 1rem 2rem; display: flex; align-items: center; justify-content: space-between;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04); position: sticky; top: 0; z-index: 100;
}
.dashboard-header h1 { font-size: 1.3rem; font-weight: 700; color: var(--color-dark); margin: 0; }
.dashboard-header-actions { display: flex; align-items: center; gap: 1rem; }
.dashboard-header-actions .notification-btn { position: relative; width: 42px; height: 42px; border-radius: 50%; background: var(--color-light-gray);
  display: flex; align-items: center; justify-content: center; color: var(--color-text); border: none; cursor: pointer; transition: var(--transition-smooth);
}
.dashboard-header-actions .notification-btn:hover { background: var(--color-primary-very-light); color: var(--color-primary); transform: scale(1.1); }
.dashboard-header-actions .notification-btn .badge { position: absolute; top: -2px; left: -2px; background: var(--color-danger); color: white;
  font-size: 0.65rem; padding: 0.15rem 0.4rem; border-radius: 10px; font-weight: 700; animation: badgePulse 2s ease-in-out infinite;
}
@keyframes badgePulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }
.dashboard-content { padding: 2rem; }

/* Stats Cards */
.stat-card { background: white; border-radius: var(--border-radius); padding: 1.5rem; box-shadow: var(--shadow-card);
  display: flex; align-items: center; gap: 1rem; transition: var(--transition-smooth); border: 1px solid rgba(205,184,154,0.1);
}
.stat-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-soft); }
.stat-card-icon { width: 60px; height: 60px; border-radius: var(--border-radius-sm); display: flex; align-items: center;
  justify-content: center; font-size: 1.5rem; flex-shrink: 0; transition: var(--transition-bounce);
}
.stat-card:hover .stat-card-icon { transform: scale(1.1) rotate(5deg); }
.stat-card-icon.primary { background: var(--color-primary-very-light); color: var(--color-primary); }
.stat-card-icon.success { background: #e8f5e9; color: var(--color-success); }
.stat-card-icon.warning { background: #fff8e1; color: #f9a825; }
.stat-card-icon.danger { background: #ffebee; color: var(--color-danger); }
.stat-card-info h3 { font-size: 1.6rem; font-weight: 800; color: var(--color-dark); margin: 0; line-height: 1; }
.stat-card-info p { font-size: 0.85rem; color: var(--color-text-light); margin: 0.3rem 0 0; }

/* Dashboard Cards */
.dashboard-card { background: white; border-radius: var(--border-radius); box-shadow: var(--shadow-card);
  border: 1px solid rgba(205,184,154,0.1); overflow: hidden; transition: var(--transition-smooth);
}
.dashboard-card:hover { box-shadow: var(--shadow-soft); }
.dashboard-card-header { padding: 1.2rem 1.5rem; border-bottom: 1px solid #f0f0f0; display: flex; align-items: center; justify-content: space-between; }
.dashboard-card-header h3 { font-size: 1rem; font-weight: 700; color: var(--color-dark); margin: 0; }
.dashboard-card-body { padding: 1.5rem; }

/* Table Styles */
.dashboard-table { width: 100%; border-collapse: collapse; }
.dashboard-table th, .dashboard-table td { padding: 0.9rem 1rem; text-align: right; font-size: 0.9rem; }
.dashboard-table th { background: var(--color-light-gray); font-weight: 700; color: var(--color-dark); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.5px; }
.dashboard-table tbody tr { border-bottom: 1px solid #f0f0f0; transition: var(--transition-smooth); }
.dashboard-table tbody tr:hover { background: var(--color-light-gray); }
.dashboard-table tbody tr:last-child { border-bottom: none; }
.badge-status { display: inline-flex; align-items: center; gap: 0.3rem; padding: 0.3rem 0.8rem; border-radius: 20px; font-size: 0.75rem; font-weight: 600; }
.badge-status.new { background: #e3f2fd; color: #1976d2; }
.badge-status.read { background: #e8f5e9; color: #388e3c; }
.badge-status.replied { background: #fff3e0; color: #f57c00; }
.btn-icon { width: 34px; height: 34px; border-radius: 8px; display: inline-flex; align-items: center; justify-content: center;
  border: none; cursor: pointer; transition: var(--transition-smooth); font-size: 0.85rem;
}
.btn-icon.edit { background: #e3f2fd; color: #1976d2; }
.btn-icon.delete { background: #ffebee; color: #c62828; }
.btn-icon.view { background: #f3e5f5; color: #7b1fa2; }
.btn-icon:hover { transform: scale(1.15); box-shadow: 0 2px 8px rgba(0,0,0,0.1); }

/* Chart Container */
.chart-container { position: relative; height: 300px; width: 100%; }

/* Services Management */
.service-manage-item { display: flex; align-items: center; gap: 1rem; padding: 1rem; background: var(--color-light-gray);
  border-radius: var(--border-radius-sm); margin-bottom: 0.8rem; transition: var(--transition-smooth);
}
.service-manage-item:hover { background: var(--color-primary-very-light); }
.service-manage-item .service-icon-sm { width: 45px; height: 45px; border-radius: 10px; background: var(--color-primary);
  display: flex; align-items: center; justify-content: center; color: white; font-size: 1.1rem; flex-shrink: 0;
}
.service-manage-item .service-info { flex: 1; }
.service-manage-item .service-info h4 { font-size: 0.95rem; font-weight: 700; margin: 0; color: var(--color-dark); }
.service-manage-item .service-info p { font-size: 0.8rem; color: var(--color-text-light); margin: 0.2rem 0 0; }
.service-manage-item .service-actions { display: flex; gap: 0.4rem; }

/* Modal */
.modal-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.5);
  z-index: 2000; display: none; align-items: center; justify-content: center; padding: 1rem;
}
.modal-overlay.active { display: flex; }
.modal-content { background: white; border-radius: var(--border-radius); width: 100%; max-width: 500px; max-height: 90vh;
  overflow-y: auto; box-shadow: var(--shadow-lg); animation: modalSlideIn 0.3s ease;
}
@keyframes modalSlideIn { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }
.modal-header { padding: 1.2rem 1.5rem; border-bottom: 1px solid #f0f0f0; display: flex; align-items: center; justify-content: space-between; }
.modal-header h3 { font-size: 1.1rem; font-weight: 700; margin: 0; color: var(--color-dark); }
.modal-header .close-btn { background: none; border: none; font-size: 1.2rem; color: var(--color-text-light); cursor: pointer; transition: var(--transition-smooth); }
.modal-header .close-btn:hover { color: var(--color-danger); }
.modal-body { padding: 1.5rem; }
.modal-footer { padding: 1rem 1.5rem; border-top: 1px solid #f0f0f0; display: flex; justify-content: flex-end; gap: 0.5rem; }

/* ========== Page Banner ========== */
.page-banner { position: relative; min-height: 45vh; display: flex; align-items: center;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 50%, #0d3d3e 100%);
  padding: 140px 0 80px; color: var(--color-white); overflow: hidden;
}
.page-banner::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: radial-gradient(ellipse at 70% 50%, rgba(205,184,154,0.15) 0%, transparent 60%);
}
.page-banner .breadcrumb { background: transparent; padding: 0; margin-bottom: 1rem; }
.page-banner .breadcrumb-item, .page-banner .breadcrumb-item a { color: rgba(255,255,255,0.7); font-size: 0.9rem; }
.page-banner .breadcrumb-item.active { color: var(--color-gold); }
.page-banner .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.5); }
.page-banner h1 { font-weight: 800; font-size: clamp(2rem, 4.5vw, 3.2rem); margin-bottom: 1rem; text-shadow: 0 2px 10px rgba(0,0,0,0.2); }
.page-banner p { font-size: 1.1rem; opacity: 0.9; max-width: 700px; line-height: 1.8; }

/* ========== Services Page ========== */
.services-page-section { padding: 4rem 0; background: var(--color-white); }
.services-page-section .service-card { text-align: center; padding: 2.5rem 2rem; }
.services-page-section .service-card .service-icon { margin: 0 auto 1.5rem; }
.services-page-section .service-card h4 { font-size: 1.2rem; }
.services-page-section .service-card p { font-size: 0.9rem; line-height: 1.8; }

/* ========== Social Media Settings Dashboard ========== */
.social-link-input { display: flex; align-items: center; gap: 0.8rem; margin-bottom: 0.8rem; padding: 0.8rem; background: var(--color-light-gray); border-radius: var(--border-radius-sm); transition: var(--transition-smooth); }
.social-link-input:hover { background: var(--color-primary-very-light); }
.social-link-input i { width: 35px; height: 35px; border-radius: 8px; display: flex; align-items: center; justify-content: center; color: white; font-size: 0.9rem; flex-shrink: 0; }
.social-link-input i.fa-twitter { background: #1DA1F2; }
.social-link-input i.fa-linkedin-in { background: #0077B5; }
.social-link-input i.fa-instagram { background: #E4405F; }
.social-link-input i.fa-facebook-f { background: #1877F2; }
.social-link-input i.fa-snapchat-ghost { background: #FFFC00; color: #333; }
.social-link-input i.fa-tiktok { background: #000; }
.social-link-input .form-control-custom { flex: 1; }

/* ========== Responsive ========== */
@media (max-width: 1199px) {
  .hero-section { min-height: auto; padding: 110px 0 70px; }
  .service-detail-hero, .page-banner { padding: 120px 0 60px; }
  .service-sidebar { position: static; }
}

@media (max-width: 991px) {
  .navbar-collapse {
    background: rgba(37, 137, 138, 0.98);
    border-radius: 16px;
    margin-top: 0.7rem;
    padding: 0.8rem 0.75rem;
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
  }
  .navbar-nav { gap: 0.25rem; }
  .navbar-nav .nav-item { width: 100%; }
  .nav-link { display: block; padding: 0.65rem 0.8rem !important; }
  .hero-section { padding: 100px 0 60px; }
  .hero-content .row { gap: 1.5rem; }
  .hero-buttons { flex-direction: column; align-items: flex-start; }
  .hero-stats { justify-content: flex-start; gap: 1rem; }
  .about-image img { height: 350px; }
  .section-header { margin-bottom: 2.5rem; }
  .dashboard-sidebar { transform: translateX(100%); }
  .dashboard-sidebar.open { transform: translateX(0); }
  .dashboard-main { margin-right: 0; }
  .dashboard-header { padding: 1rem; }
  .dashboard-content { padding: 1rem; }
  .hero-decor-1, .hero-decor-2 { display: none; }
}

@media (max-width: 767px) {
  .pattern-accent { display: none; }
  .mobile-bottom-bar { display: block; }
  .floating-buttons { bottom: 80px; left: 12px; gap: 10px; }
  .back-to-top { bottom: 80px; right: 12px; }
  .navbar-brand img { height: 42px; }
  .hero-title { font-size: 1.8rem; line-height: 1.3; }
  .hero-subtitle { font-size: 1rem; }
  .hero-slogan { border-right: 0; border-left: 3px solid var(--color-gold); padding-right: 0; padding-left: 1rem; }
  .hero-stat { padding: 0.8rem 1rem; }
  .about-features { grid-template-columns: 1fr; }
  .contact-info-card, .contact-form-card { padding: 1.5rem; }
  .service-detail-card { padding: 1.5rem; }
  .service-card { padding: 2rem 1.5rem; }
  .why-card, .cta-section, .contact-section, .services-section, .about-section { padding: 3.5rem 0; }
  .service-detail-content { padding: 3rem 0; }
  .footer-links { gap: 1rem; }
  .footer-contact { gap: 0.6rem 1rem; }
  body { padding-bottom: 70px; }
  .dashboard-sidebar { width: 100%; }
  .stat-card { padding: 1rem; }
  .dashboard-table { display: block; overflow-x: auto; }
  .map-wrapper iframe { height: 280px; }
  .page-banner h1, .service-detail-hero h1 { font-size: 1.9rem; }
  .page-banner p, .service-detail-hero p { font-size: 1rem; }
}

@media (max-width: 575px) {
  .btn-premium { width: 100%; padding: 0.8rem 1rem; font-size: 0.85rem; }
  .hero-buttons, .cta-buttons { width: 100%; }
  .hero-buttons .btn-premium, .cta-buttons .btn-premium { width: 100%; }
  .hero-title { font-size: 1.6rem; }
  .hero-stats { flex-direction: column; align-items: stretch; gap: 0.8rem; }
  .hero-stat { text-align: right; }
  .loading-logo { width: 85vw; }
  .loading-bar-container { width: 85vw; }
  .dashboard-header h1 { font-size: 1rem; }
  .stat-card-info h3 { font-size: 1.3rem; }
  .hero-stat-number { font-size: 1.5rem; }
  .service-icon { width: 70px; height: 70px; }
  .service-icon i { font-size: 1.6rem; }
  .section-title { font-size: 1.55rem; }
  .service-card h4 { font-size: 1.1rem; }
  .footer-section { padding: 2.5rem 0 1rem; }
  .footer-links { flex-direction: column; align-items: center; gap: 0.6rem; }
  .floating-btn { width: 50px; height: 50px; font-size: 1.3rem; }
}

/* ========== Animations ========== */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.fade-in-up { animation: fadeInUp 0.6s ease forwards; }

@keyframes fadeInLeft { from { opacity: 0; transform: translateX(-30px); } to { opacity: 1; transform: translateX(0); } }
.fade-in-left { animation: fadeInLeft 0.6s ease forwards; }

@keyframes fadeInRight { from { opacity: 0; transform: translateX(30px); } to { opacity: 1; transform: translateX(0); } }
.fade-in-right { animation: fadeInRight 0.6s ease forwards; }

@keyframes scaleIn { from { opacity: 0; transform: scale(0.8); } to { opacity: 1; transform: scale(1); } }
.scale-in { animation: scaleIn 0.5s ease forwards; }

/* ========== Scrollbar ========== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #f1f1f1; }
::-webkit-scrollbar-thumb { background: var(--color-gold); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--color-gold-dark); }