/* ==========================================================================
   Licia Integrated Services Ltd - Modern $10K Redesign Design System
   Dual Theme System: Light (Default Majorly White) & Dark (Obsidian Glass)
   ========================================================================== */

/* 1. CSS VARIABLES & THEME SCHEMES */

/* LIGHT MODE (DEFAULT THEME - MAJORLY WHITE) */
:root, [data-theme="light"] {
  --primary: #f27935;
  --primary-hover: #e05f18;
  --primary-glow: rgba(242, 121, 53, 0.25);
  --primary-light: rgba(242, 121, 53, 0.08);
  --secondary: #ff8c42;
  
  --bg-dark: #f8fafc; /* Crisp Light Background */
  --bg-dark-alt: #ffffff;
  --bg-card: #ffffff;
  --bg-card-hover: #ffffff;
  --bg-glass: rgba(242, 121, 53, 0.03);
  
  --border-color: rgba(242, 121, 53, 0.2);
  --border-color-hover: rgba(242, 121, 53, 0.5);
  --border-glass: rgba(0, 0, 0, 0.08);
  
  --text-main: #0f172a; /* Dark Slate Text */
  --text-muted: #475569;
  --text-dim: #64748b;
  --heading-color: #0f172a;
  
  --modal-bg: #ffffff;
  --nav-bg: #090d16; /* Distinct Dark Header for Sharp Separation */
  --spotlight-glow: rgba(242, 121, 53, 0.12);
  
  --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.06);
  --shadow-card: 0 10px 30px rgba(15, 23, 42, 0.06);
  --shadow-card-hover: 0 15px 35px rgba(242, 121, 53, 0.2);
  --shadow-glass: 0 8px 32px 0 rgba(0, 0, 0, 0.08);

  --banner-grad: linear-gradient(135deg, #ffffff 0%, #fff7f2 100%);
  --footer-bg: #0b0f19;
  --footer-text: #94a3b8;
}

/* DARK MODE (SECOND THEME - PRESENT OBSIDIAN GLASS) */
[data-theme="dark"] {
  --primary: #f27935;
  --primary-hover: #e05f18;
  --primary-glow: rgba(242, 121, 53, 0.35);
  --primary-light: rgba(242, 121, 53, 0.12);
  --secondary: #ff8c42;
  
  --bg-dark: #070a12; /* Deep Obsidian Background */
  --bg-dark-alt: #0d121f;
  --bg-card: rgba(15, 23, 42, 0.65);
  --bg-card-hover: rgba(23, 34, 60, 0.85);
  --bg-glass: rgba(255, 255, 255, 0.03);
  
  --border-color: rgba(242, 121, 53, 0.15);
  --border-color-hover: rgba(242, 121, 53, 0.5);
  --border-glass: rgba(255, 255, 255, 0.08);
  
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-dim: #64748b;
  --heading-color: #ffffff;
  
  --modal-bg: #0d1322;
  --nav-bg: #070a12;
  --spotlight-glow: rgba(242, 121, 53, 0.14);

  --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.3);
  --shadow-card: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
  --shadow-card-hover: 0 10px 40px rgba(242, 121, 53, 0.25);
  --shadow-glass: 0 8px 32px 0 rgba(0, 0, 0, 0.37);

  --banner-grad: linear-gradient(135deg, rgba(26, 38, 64, 0.9), rgba(13, 18, 31, 0.95));
  --footer-bg: #04060b;
  --footer-text: #94a3b8;
}

:root {
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  
  --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);

  --mouse-x: 50vw;
  --mouse-y: 50vh;
}

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

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
  transition: background-color 0.4s ease, color 0.4s ease;
}

/* 2. MOUSE MOVEMENT GRADIENT SPOTLIGHT */
.mouse-spotlight {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 1;
  background: radial-gradient(
    700px circle at var(--mouse-x) var(--mouse-y),
    var(--spotlight-glow),
    transparent 80%
  );
  transition: opacity 0.3s ease;
}

/* Background Ambient Blur Orbs */
.ambient-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.35;
}

.orb-1 {
  top: -100px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: var(--primary);
  animation: floatOrb 18s ease-in-out infinite alternate;
}

.orb-2 {
  bottom: 10%;
  right: -150px;
  width: 600px;
  height: 600px;
  background: #3b82f6;
  opacity: 0.12;
  animation: floatOrb 22s ease-in-out infinite alternate-reverse;
}

.orb-3 {
  top: 45%;
  left: 30%;
  width: 400px;
  height: 400px;
  background: #f59e0b;
  opacity: 0.1;
  animation: floatOrb 20s ease-in-out infinite alternate;
}

@keyframes floatOrb {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(60px, 40px) scale(1.1); }
  100% { transform: translate(-40px, 70px) scale(0.95); }
}

/* Container & Grid Utilities */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 2;
}

/* Typography Base */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--heading-color);
}

.gradient-text {
  background: linear-gradient(135deg, var(--heading-color) 0%, var(--primary) 65%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  background: var(--primary-light);
  border: 1px solid var(--border-color);
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.section-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 4rem auto;
}

.section-header h2 {
  font-size: 2.75rem;
  margin-bottom: 1rem;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.125rem;
}

/* Buttons System */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.8rem;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition-normal);
  text-decoration: none;
  border: 1px solid transparent;
  outline: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-hover));
  color: #fff;
  box-shadow: 0 4px 15px var(--primary-glow);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(242, 121, 53, 0.45);
  background: linear-gradient(135deg, #ff8c42, var(--primary));
}

.btn-glass {
  background: var(--bg-glass);
  color: var(--text-main);
  border: 1px solid var(--border-glass);
  backdrop-filter: blur(10px);
}

.btn-glass:hover {
  background: var(--primary-light);
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-3px);
}

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

.btn-outline-primary:hover {
  background: var(--primary-light);
  border-color: var(--primary);
  transform: translateY(-2px);
}

/* THEME TOGGLE BUTTON */
.theme-toggle-btn {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-color);
  color: var(--primary);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.15rem;
  transition: var(--transition-normal);
}

.theme-toggle-btn:hover {
  background: var(--primary);
  color: #ffffff;
  transform: rotate(15deg) scale(1.05);
  box-shadow: 0 0 15px var(--primary-glow);
}

/* 3. DISTINCT DARK HEADER & NAVIGATION BAR */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.1rem 0;
  background: #090d16; /* Distinct Dark Header Background for Separation */
  border-bottom: 2px solid rgba(242, 121, 53, 0.35);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(16px);
  transition: var(--transition-normal);
}

.navbar.scrolled {
  padding: 0.75rem 0;
  background: #04070e;
  border-bottom-color: var(--primary);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.5);
}

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

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.brand-logo img {
  height: 52px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 10px rgba(242, 121, 53, 0.4));
}

.brand-logo .brand-text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.35rem;
  color: #ffffff;
  letter-spacing: -0.01em;
}

.brand-logo .brand-text span {
  color: var(--primary);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-link {
  color: #e2e8f0; /* Crisp contrasting link color over dark header */
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition-fast);
  position: relative;
  padding: 0.5rem 0;
}

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

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

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
}

/* Mobile Nav Overlay */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 380px;
  height: 100vh;
  background: #0d121f;
  backdrop-filter: blur(20px);
  z-index: 101;
  padding: 5rem 2rem 2rem;
  transition: var(--transition-normal);
  border-left: 1px solid var(--border-color);
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mobile-link {
  color: #ffffff;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 600;
}

.mobile-menu-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 1.5rem;
  cursor: pointer;
}

/* 4. HERO BANNER SECTION */
.hero {
  padding-top: 11rem;
  padding-bottom: 6rem;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
}

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

.hero-content h1 {
  font-size: 3.8rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero-content p.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  max-width: 580px;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

.hero-ticker {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.hero-ticker-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.hero-ticker-content {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-main);
  overflow: hidden;
  height: 1.5rem;
}

.ticker-item {
  display: none;
  animation: fadeIn 0.5s ease forwards;
}

.ticker-item.active {
  display: block;
}

/* Hero Showcase Banner Carousel Card */
.hero-visual {
  position: relative;
}

.glass-banner-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}

.banner-slider-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 380px;
  display: none;
}

.banner-slider-item.active {
  display: block;
  animation: zoomFade 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes zoomFade {
  from { opacity: 0; transform: scale(1.05); }
  to { opacity: 1; transform: scale(1); }
}

.banner-slider-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-overlay-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 1.5rem 1.5rem;
  background: linear-gradient(to top, rgba(7, 10, 18, 0.95) 0%, transparent 100%);
  color: #fff;
}

.banner-overlay-caption h3 {
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 0.3rem;
}

.banner-overlay-caption p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

.banner-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1rem;
}

.banner-dots {
  display: flex;
  gap: 0.5rem;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.15);
  cursor: pointer;
  transition: var(--transition-fast);
}

[data-theme="dark"] .dot {
  background: rgba(255, 255, 255, 0.2);
}

.dot.active {
  background: var(--primary);
  width: 24px;
  border-radius: 10px;
}

.banner-nav-btn {
  background: var(--bg-glass);
  border: 1px solid var(--border-color);
  color: var(--heading-color);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
}

.banner-nav-btn:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

/* 5. SERVICES SECTION & MODALS */
.services-section {
  padding: 7rem 0;
  position: relative;
}

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

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  backdrop-filter: blur(12px);
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  opacity: 0;
  transition: var(--transition-normal);
}

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

.service-card:hover::before {
  opacity: 1;
}

.service-icon-box {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  background: var(--primary-light);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  transition: var(--transition-normal);
}

.service-card:hover .service-icon-box {
  background: var(--primary);
  color: #fff;
  transform: scale(1.08) rotate(3deg);
  box-shadow: 0 8px 20px var(--primary-glow);
}

.service-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
  color: var(--heading-color);
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.75rem;
  flex-grow: 1;
}

.service-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary);
  font-weight: 700;
  font-size: 0.95rem;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: var(--transition-fast);
}

.service-card-btn i {
  transition: transform 0.2s ease;
}

.service-card-btn:hover i {
  transform: translateX(5px);
}

/* MODAL WINDOW SYSTEM */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(5, 8, 15, 0.75);
  backdrop-filter: blur(16px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-wrapper {
  background: var(--modal-bg);
  border: 1px solid var(--border-color-hover);
  border-radius: var(--radius-lg);
  max-width: 720px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2.5rem;
  position: relative;
  box-shadow: var(--shadow-card-hover);
  transform: scale(0.92) translateY(20px);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.active .modal-wrapper {
  transform: scale(1) translateY(0);
}

.modal-close-btn {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  color: var(--text-muted);
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
}

.modal-close-btn:hover {
  background: var(--primary);
  color: #fff;
  transform: rotate(90deg);
}

.modal-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.75rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-glass);
}

.modal-header-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.modal-header h3 {
  font-size: 1.75rem;
  color: var(--heading-color);
}

.modal-header .modal-subtitle {
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 600;
}

.modal-body p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
  line-height: 1.7;
}

.modal-features-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0 2rem 0;
}

.modal-features-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  padding: 0.85rem 1rem;
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  color: var(--text-main);
}

.modal-features-list li i {
  color: var(--primary);
}

.modal-action-footer {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-glass);
  flex-wrap: wrap;
}

/* 6. ABOUT US & SKILLS PROGRESS */
.about-section {
  padding: 7rem 0;
  position: relative;
}

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

.about-text h2 {
  font-size: 2.75rem;
  margin-bottom: 1.5rem;
}

.about-text p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 1.25rem;
}

.about-highlight-box {
  background: var(--primary-light);
  border-left: 4px solid var(--primary);
  padding: 1.25rem 1.5rem;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: 1.75rem 0;
  color: var(--heading-color);
  font-size: 1.05rem;
  font-weight: 500;
}

.skills-wrapper {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-card);
}

.skills-wrapper h3 {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: var(--heading-color);
}

.skill-item {
  margin-bottom: 1.75rem;
}

.skill-info {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
  margin-bottom: 0.6rem;
  font-size: 0.95rem;
}

.skill-info span.title {
  color: var(--text-main);
}

.skill-info span.percent {
  color: var(--primary);
}

.progress-track {
  width: 100%;
  height: 10px;
  background: rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-full);
  overflow: hidden;
}

[data-theme="dark"] .progress-track {
  background: rgba(255, 255, 255, 0.08);
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: var(--radius-full);
  width: 0;
  transition: width 1.5s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 0 12px var(--primary-glow);
}

/* 7. CLIENTELE & PORTFOLIO */
.clientele-section {
  padding: 7rem 0;
  position: relative;
}

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

.client-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  backdrop-filter: blur(12px);
  transition: var(--transition-normal);
  box-shadow: var(--shadow-card);
}

.client-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-color-hover);
  box-shadow: var(--shadow-card-hover);
}

.client-img-container {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.client-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.client-card:hover .client-img-container img {
  transform: scale(1.08);
}

.client-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7, 10, 18, 0.8), transparent);
}

.client-content {
  padding: 1.75rem;
}

.client-content h3 {
  font-size: 1.35rem;
  color: var(--heading-color);
  margin-bottom: 0.5rem;
}

.client-content p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* 8. LEADERSHIP TEAM & CEO MODAL */
.team-section {
  padding: 7rem 0;
  position: relative;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  justify-content: center;
}

.team-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2rem;
  backdrop-filter: blur(12px);
  text-align: center;
  transition: var(--transition-normal);
  position: relative;
  box-shadow: var(--shadow-card);
}

.team-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-color-hover);
  box-shadow: var(--shadow-card-hover);
}

.team-avatar {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin: 0 auto 1.5rem auto;
  overflow: hidden;
  border: 3px solid var(--primary);
  box-shadow: 0 0 20px var(--primary-glow);
}

.team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card h3 {
  font-size: 1.4rem;
  color: var(--heading-color);
  margin-bottom: 0.3rem;
}

.team-card .role {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.team-card p.bio-excerpt {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.team-socials {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  list-style: none;
  margin-top: 1.25rem;
}

.team-socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: var(--transition-fast);
}

.team-socials a:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

/* CEO Partner Gallery Grid in CEO Modal */
.partner-gallery {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-glass);
}

.partner-gallery h4 {
  font-size: 1.25rem;
  color: var(--heading-color);
  margin-bottom: 1.25rem;
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.partner-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-glass);
  height: 140px;
}

.partner-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.partner-item:hover img {
  transform: scale(1.1);
}

/* 9. IMPACT STATS COUNTER STRIP */
.stats-section {
  padding: 4rem 0;
  background: var(--primary-light);
  border-y: 1px solid var(--border-color);
  position: relative;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stat-card {
  padding: 1.5rem;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* 10. LICIA MART & BUY IN DUBAI FEATURE */
.mart-section {
  padding: 7rem 0;
  position: relative;
}

.mart-card-banner {
  background: var(--banner-grad);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 4rem 3rem;
  backdrop-filter: blur(16px);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

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

.mart-step-item {
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  padding: 2rem 1.5rem;
  border-radius: var(--radius-md);
  text-align: center;
  position: relative;
}

.step-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem auto;
  font-size: 1.1rem;
}

.mart-step-item h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--heading-color);
}

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

/* 11. CONTACT SECTION & FOOTER */
.contact-section {
  padding: 7rem 0;
  position: relative;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-form-container {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 3rem;
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-card);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-main);
}

.form-control {
  width: 100%;
  padding: 0.95rem 1.25rem;
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition-fast);
  outline: none;
}

.form-control:focus {
  border-color: var(--primary);
  background: var(--bg-card);
  box-shadow: 0 0 15px var(--primary-glow);
}

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

.contact-info-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  margin-bottom: 2.5rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--primary-light);
  border: 1px solid var(--border-color);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-info-text h4 {
  font-size: 1.05rem;
  color: var(--heading-color);
  margin-bottom: 0.2rem;
}

.contact-info-text p, .contact-info-text a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.contact-info-text a:hover {
  color: var(--primary);
}

.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-color);
  height: 260px;
  box-shadow: var(--shadow-sm);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

[data-theme="dark"] .map-container iframe {
  filter: invert(90%) hue-rotate(180deg) contrast(1.2);
}

/* Footer Styling */
footer {
  background: var(--footer-bg);
  border-top: 1px solid var(--border-color);
  padding: 5rem 0 2rem 0;
  position: relative;
  color: var(--footer-text);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-brand p {
  color: var(--footer-text);
  margin-top: 1.25rem;
  font-size: 0.95rem;
  max-width: 320px;
}

.footer-title {
  font-size: 1.1rem;
  color: #ffffff;
  margin-bottom: 1.5rem;
}

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

.footer-links a {
  color: var(--footer-text);
  text-decoration: none;
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

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

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--footer-text);
  font-size: 0.9rem;
}

.footer-bottom a {
  color: var(--primary);
  text-decoration: none;
}

/* TOAST NOTIFICATION */
.toast-notification {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--modal-bg);
  border: 1px solid var(--primary);
  color: var(--text-main);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card-hover);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 2000;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition-normal);
  pointer-events: none;
}

.toast-notification.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.toast-notification i {
  color: var(--primary);
  font-size: 1.25rem;
}

/* 12. RESPONSIVE BREAKPOINTS */
@media (max-width: 1024px) {
  .hero-grid, .about-grid, .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .hero-content h1 {
    font-size: 3rem;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links, .nav-actions .btn {
    display: none;
  }
  .mobile-toggle {
    display: block;
  }
  .hero-content h1 {
    font-size: 2.4rem;
  }
  .section-header h2 {
    font-size: 2.1rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .partner-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}
