/* ===========================================
   Silver Feather Media - Premium Visual Enhancements
   Agency-Level UI/UX Upgrade
   
   Loads AFTER all existing CSS to override
   and enhance visual presentation only.
   
   Preserves ALL existing functionality:
   - Navigation & routing
   - Backend logic
   - Admin panel
   - Analytics
   - SEO
   - Animations
   - Business logic
   - Integrations
   - Responsiveness
   =========================================== */

/* ===== Premium Font Import ===== */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@200;300;400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@200;300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700;800&display=swap');

/* ===== CSS Custom Properties (Design Tokens) ===== */
:root {
  /* Typography */
  --font-primary: 'Outfit', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Plus Jakarta Sans', 'Outfit', sans-serif;
  --font-body: 'Outfit', 'Inter', sans-serif;
  
  /* Colors - Enhanced Premium Palette */
  --gold-primary: #d4a017;
  --gold-light: #e8b830;
  --gold-gradient: linear-gradient(135deg, #d4a017 0%, #e8b830 50%, #f0c840 100%);
  --gold-glow: 0 0 20px rgba(212, 160, 23, 0.3);
  
  --dark-bg: #2a2d35;
  --dark-surface: rgba(42, 45, 53, 0.85);
  --dark-card: #2a2d35;
  
  --glass-bg: rgba(255, 255, 255, 0.06);
  --glass-border: rgba(255, 255, 255, 0.1);
  --glass-blur: blur(20px);
  
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 50px rgba(0, 0, 0, 0.15);
  --shadow-premium: 0 30px 60px rgba(0, 0, 0, 0.12), 0 10px 30px rgba(0, 0, 0, 0.08);
  --shadow-gold: 0 8px 25px rgba(212, 160, 23, 0.3);
  
  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-2xl: 24px;
  
  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-premium: 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ===== 1. TYPOGRAPHY SYSTEM ===== */
body {
  font-family: var(--font-primary);
  font-weight: 400;
  letter-spacing: 0.01em;
  color: #1e293b;
}

h1, h2, h3, h4, h5, h6,
.section-header h2,
.hero-text h1,
.contact-info h3,
.team-name,
.feature-card h3,
.service-card h3,
.portfolio-content h3,
.client-content h3 {
  font-family: var(--font-display) !important;
  letter-spacing: -0.02em !important;
  font-weight: 700 !important;
}

/* Section Header Enhancements */
.section-header h2 {
  font-size: clamp(32px, 4vw, 52px) !important;
  font-weight: 800 !important;
  line-height: 1.1 !important;
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact .section-header h2,
.dark-section .section-header h2 {
  background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-header p {
  font-size: clamp(15px, 1.2vw, 18px) !important;
  font-weight: 400 !important;
  color: #6b6f78 !important;
  line-height: 1.7 !important;
  max-width: 600px !important;
}

/* ===== 2. NAVBAR ENHANCEMENT - Premium Glassmorphism ===== */
.header {
  background: linear-gradient(180deg, 
    rgba(42, 45, 53, 0.92) 0%, 
    rgba(35, 38, 46, 0.88) 100%) !important;
  backdrop-filter: blur(24px) saturate(1.4) !important;
  -webkit-backdrop-filter: blur(24px) saturate(1.4) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
  box-shadow: 
    0 4px 30px rgba(0, 0, 0, 0.25),
    0 1px 0 rgba(255, 255, 255, 0.04) inset !important;
}

.header.scrolled {
  background: linear-gradient(180deg, 
    rgba(35, 38, 46, 0.97) 0%, 
    rgba(30, 33, 41, 0.95) 100%) !important;
  backdrop-filter: blur(30px) saturate(1.5) !important;
  -webkit-backdrop-filter: blur(30px) saturate(1.5) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
  box-shadow: 
    0 8px 40px rgba(0, 0, 0, 0.3),
    0 1px 0 rgba(255, 255, 255, 0.05) inset !important;
}

/* Desktop Nav Links Enhancement */
.desktop-nav a {
  font-family: var(--font-primary) !important;
  font-weight: 500 !important;
  font-size: 14px !important;
  letter-spacing: 0.02em !important;
  padding: 10px 24px !important;
  position: relative !important;
  overflow: hidden !important;
}

.desktop-nav a::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  border-radius: 10px;
  opacity: 0;
  transition: opacity var(--transition-base);
}

.desktop-nav a:hover::before {
  opacity: 1;
}

.desktop-nav a.active {
  background: rgba(212, 160, 23, 0.12) !important;
  border-color: rgba(212, 160, 23, 0.25) !important;
  box-shadow: 0 0 20px rgba(212, 160, 23, 0.08) !important;
}

.desktop-nav a.active::after {
  height: 2.5px !important;
  background: var(--gold-gradient) !important;
  box-shadow: 0 0 12px rgba(212, 160, 23, 0.5) !important;
}

/* ===== 3. STAT CARDS - Glassmorphism ===== */
.stats {
  position: relative !important;
  background: linear-gradient(135deg, #1e2128 0%, #2a2d35 50%, #32353d 100%) !important;
}

.stat-card {
  background: var(--glass-bg) !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: var(--radius-xl) !important;
  padding: 40px 24px !important;
  transition: all var(--transition-premium) !important;
  position: relative !important;
  overflow: hidden !important;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold-gradient);
  opacity: 0.6;
}

.stat-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-xl);
  padding: 1px;
  background: linear-gradient(135deg, rgba(212, 160, 23, 0.2), transparent, rgba(255, 255, 255, 0.05));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.stat-card:hover {
  transform: translateY(-4px) !important;
  background: rgba(255, 255, 255, 0.1) !important;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2) !important;
}

.stat-number {
  font-family: var(--font-display) !important;
  font-size: 42px !important;
  font-weight: 800 !important;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-family: var(--font-primary) !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  letter-spacing: 0.05em !important;
  text-transform: uppercase !important;
  color: rgba(255, 255, 255, 0.7) !important;
}

/* ===== 4. PORTFOLIO / FEATURED WORK CARDS - Premium Agency Showcase ===== */
.portfolio {
  background: linear-gradient(180deg, #f8f9fb 0%, #eef0f3 100%) !important;
}

.portfolio-item {
  background: #ffffff !important;
  border-radius: var(--radius-xl) !important;
  overflow: hidden !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04), 0 8px 24px rgba(0, 0, 0, 0.04) !important;
  transition: all var(--transition-premium) !important;
  border: 1px solid rgba(0, 0, 0, 0.04) !important;
  position: relative !important;
}

.portfolio-item::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-xl);
  padding: 1px;
  background: linear-gradient(135deg, rgba(212, 160, 23, 0.1), transparent, rgba(255, 255, 255, 0.05));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.portfolio-item:hover {
  transform: translateY(-8px) !important;
  box-shadow: var(--shadow-premium) !important;
  border-color: rgba(212, 160, 23, 0.1) !important;
}

/* Make images 70-80% dominant - increase image height, reduce content */
.portfolio-item .portfolio-image {
  height: 280px !important; /* Larger image area */
  position: relative !important;
  overflow: hidden !important;
}

/* On larger displays, make images even more dominant */
@media (min-width: 768px) {
  .portfolio-item .portfolio-image {
    height: 320px !important;
  }
}

@media (min-width: 1024px) {
  .portfolio-item .portfolio-image {
    height: 340px !important;
  }
}

/* Reduce content area to ~20-30% */
.portfolio-item .portfolio-content {
  padding: 20px 24px 24px !important;
}

.portfolio-content h3 {
  font-size: 18px !important;
  font-weight: 700 !important;
  color: #0f172a !important;
  margin-bottom: 6px !important;
  line-height: 1.3 !important;
}

.portfolio-content p {
  font-size: 13px !important;
  color: #6b6f78 !important;
  line-height: 1.6 !important;
  margin-bottom: 0 !important;
}

/* Premium image hover effect */
.portfolio-item .portfolio-image img,
.portfolio-item .slider-img img {
  transition: transform 0.7s cubic-bezier(0.33, 1, 0.68, 1) !important;
}

.portfolio-item:hover .portfolio-image img,
.portfolio-item:hover .slider-img img {
  transform: scale(1.08) !important;
}

/* Image overlay on hover */
.portfolio-item .portfolio-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.4) 0%, transparent 40%);
  opacity: 0;
  transition: opacity var(--transition-base);
  z-index: 2;
  pointer-events: none;
}

.portfolio-item:hover .portfolio-image::after {
  opacity: 1;
}

/* Enhanced expand icon */
.portfolio-expand-icon {
  width: 40px !important;
  height: 40px !important;
  background: rgba(0, 0, 0, 0.5) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  border-radius: 12px !important;
  transform: translateY(-4px) scale(0.9) !important;
  transition: all var(--transition-premium) !important;
  z-index: 3 !important;
}

.portfolio-item:hover .portfolio-expand-icon {
  opacity: 1 !important;
  transform: translateY(0) scale(1) !important;
  background: rgba(212, 160, 23, 0.7) !important;
  border-color: rgba(212, 160, 23, 0.4) !important;
  box-shadow: 0 4px 15px rgba(212, 160, 23, 0.3) !important;
}

/* Portfolio Tag Enhancement */
.portfolio-tag {
  padding: 5px 12px !important;
  background: linear-gradient(135deg, rgba(212, 160, 23, 0.1), rgba(232, 184, 48, 0.08)) !important;
  color: #b8860b !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  letter-spacing: 0.04em !important;
  border-radius: 6px !important;
  border: 1px solid rgba(212, 160, 23, 0.15) !important;
  display: inline-block !important;
  margin-bottom: 10px !important;
}

/* Portfolio Metrics Enhancement */
.portfolio-metrics .metric-value {
  font-family: var(--font-display) !important;
  font-size: 20px !important;
  font-weight: 800 !important;
  background: var(--gold-gradient) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}

.portfolio-metrics .metric-label {
  font-size: 11px !important;
  font-weight: 500 !important;
  letter-spacing: 0.03em !important;
  color: #8a8d95 !important;
}

/* Filter Buttons Enhancement */

/* Enhanced Client Cards */
.clients-section .portfolio-item {
  background: #ffffff !important;
  border: 1px solid rgba(0, 0, 0, 0.04) !important;
  border-radius: var(--radius-xl) !important;
  overflow: hidden !important;
  transition: all var(--transition-premium) !important;
}

.clients-section .portfolio-item:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1) !important;
  border-color: rgba(212, 160, 23, 0.15) !important;
}

/* ===== 6. TEAM COLLABORATION SECTION ===== */
.team-collaboration-section {
  position: relative !important;
  background: linear-gradient(180deg, #eef0f3 0%, #f4f5f7 100%) !important;
}

.team-collab-card {
  border-radius: var(--radius-2xl) !important;
  overflow: hidden !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06) !important;
  border: 1px solid rgba(0, 0, 0, 0.04) !important;
  transition: all var(--transition-premium) !important;
}

.team-collab-card:hover {
  transform: translateY(-6px) !important;
  box-shadow: var(--shadow-premium) !important;
}

.team-collab-card .team-collab-image {
  height: 340px !important;
}

@media (min-width: 768px) {
  .team-collab-card .team-collab-image {
    height: 420px !important;
  }
}

/* ===== 7. SERVICES SECTION ===== */
.services {
  background: linear-gradient(180deg, #f8f9fb 0%, #ffffff 100%) !important;
}

.service-card {
  background: #ffffff !important;
  border: 1px solid rgba(0, 0, 0, 0.04) !important;
  border-radius: var(--radius-xl) !important;
  padding: 28px 24px !important;
  transition: all var(--transition-premium) !important;
  position: relative !important;
  overflow: hidden !important;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold-gradient);
  opacity: 0;
  transition: opacity var(--transition-base);
}

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

.service-card:hover {
  transform: translateY(-4px) !important;
  box-shadow: var(--shadow-lg) !important;
  border-color: rgba(212, 160, 23, 0.1) !important;
}

.service-icon {
  width: 52px !important;
  height: 52px !important;
  border-radius: 14px !important;
  background: var(--gold-gradient) !important;
  box-shadow: 0 4px 15px rgba(212, 160, 23, 0.2) !important;
}

.service-icon i {
  font-size: 24px !important;
  color: #1e293b !important;
}

.service-card h3 {
  font-family: var(--font-display) !important;
  font-size: 18px !important;
  font-weight: 700 !important;
  margin-bottom: 10px !important;
}

.service-card h3 a {
  color: #1e293b !important;
  text-decoration: none !important;
}

.service-card p {
  font-size: 14px !important;
  line-height: 1.7 !important;
  color: #6b6f78 !important;
}

.service-link {
  font-family: var(--font-primary) !important;
  font-weight: 600 !important;
  font-size: 13px !important;
  letter-spacing: 0.02em !important;
  color: #b8860b !important;
}

/* ===== 8. FEATURES / WHY CHOOSE US SECTION ===== */
.why-choose-us {
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fb 100%) !important;
}

.feature-card {
  background: #ffffff !important;
  border: 1px solid rgba(0, 0, 0, 0.04) !important;
  border-radius: var(--radius-xl) !important;
  padding: 28px 24px !important;
  transition: all var(--transition-premium) !important;
  position: relative !important;
}

.feature-card:hover {
  transform: translateY(-4px) !important;
  box-shadow: var(--shadow-lg) !important;
  border-color: rgba(212, 160, 23, 0.1) !important;
}

.feature-icon {
  width: 52px !important;
  height: 52px !important;
  border-radius: 14px !important;
  background: var(--gold-gradient) !important;
  box-shadow: 0 4px 15px rgba(212, 160, 23, 0.2) !important;
}

.feature-icon i {
  font-size: 24px !important;
  color: #1e293b !important;
}

.feature-card h3 {
  font-family: var(--font-display) !important;
  font-size: 18px !important;
  font-weight: 700 !important;
  margin-bottom: 8px !important;
}

.feature-card p {
  font-size: 14px !important;
  line-height: 1.7 !important;
  color: #6b6f78 !important;
}

/* ===== 9. CTA SECTION - Glassmorphism ===== */
.services-cta-section,
.service-cta-section {
  background: linear-gradient(135deg, #1e2128 0%, #2a2d35 50%, #32353d 100%) !important;
  position: relative !important;
  overflow: hidden !important;
}

.services-cta-section::before,
.service-cta-section::before {
  content: '' !important;
  position: absolute !important;
  top: -50% !important;
  left: -50% !important;
  width: 200% !important;
  height: 200% !important;
  background: radial-gradient(ellipse at 30% 50%, rgba(212, 160, 23, 0.04) 0%, transparent 50%),
              radial-gradient(ellipse at 70% 50%, rgba(212, 160, 23, 0.03) 0%, transparent 50%) !important;
  pointer-events: none !important;
}

.services-cta-section h2,
.service-cta-section h2 {
  font-family: var(--font-display) !important;
  font-size: clamp(24px, 3vw, 36px) !important;
  font-weight: 800 !important;
  background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px !important;
}

.services-cta-section p,
.service-cta-section p {
  font-size: clamp(14px, 1.1vw, 16px) !important;
  color: rgba(255, 255, 255, 0.7) !important;
  line-height: 1.7 !important;
}

.services-cta-section .btn-secondary.btn-large,
.service-cta-section .btn-secondary.btn-large {
  background: rgba(255, 255, 255, 0.06) !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
  border: 1.5px solid rgba(255, 255, 255, 0.15) !important;
  border-radius: 50px !important;
  padding: 12px 36px !important;
  font-weight: 600 !important;
  letter-spacing: 0.02em !important;
  transition: all var(--transition-base) !important;
}

.services-cta-section .btn-secondary.btn-large:hover {
  background: rgba(255, 255, 255, 0.12) !important;
  border-color: rgba(255, 255, 255, 0.25) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2) !important;
}

/* ===== 10. TEAM SECTION ===== */
.team-section {
  background: linear-gradient(180deg, #f8f9fb 0%, #ffffff 100%) !important;
}

.team-card {
  background: #ffffff !important;
  border: 1px solid rgba(0, 0, 0, 0.04) !important;
  border-radius: var(--radius-lg) !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03) !important;
  transition: all var(--transition-premium) !important;
}

.team-card:hover {
  transform: translateY(-4px) !important;
  box-shadow: var(--shadow-lg) !important;
  border-color: rgba(212, 160, 23, 0.1) !important;
}

.team-name {
  font-family: var(--font-display) !important;
  font-size: 18px !important;
  font-weight: 700 !important;
  color: #0f172a !important;
}

.team-role {
  font-family: var(--font-primary) !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  color: #b8860b !important;
}

.team-description {
  font-size: 13px !important;
  line-height: 1.7 !important;
  color: #6b6f78 !important;
}

.team-image-wrapper {
  border-radius: 12px !important;
  overflow: hidden !important;
}

/* ===== 11. CONTACT SECTION ===== */
.contact {
  background: linear-gradient(135deg, #1e2128 0%, #2a2d35 50%, #32353d 100%) !important;
  position: relative !important;
}

.contact-info h3 {
  font-family: var(--font-display) !important;
  font-size: 26px !important;
  font-weight: 800 !important;
  color: #ffffff !important;
  text-align: center !important;
}

.contact-item {
  background: rgba(255, 255, 255, 0.04) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  border: 1px solid rgba(255, 255, 255, 0.06) !important;
  border-radius: var(--radius-lg) !important;
  padding: 20px 24px !important;
  transition: all var(--transition-base) !important;
}

.contact-item:hover {
  background: rgba(255, 255, 255, 0.08) !important;
  border-color: rgba(212, 160, 23, 0.2) !important;
  transform: translateY(-2px) !important;
}

.contact-item i {
  font-size: 20px !important;
  color: #d4a017 !important;
}

.contact-item p,
.contact-item a {
  font-size: 14px !important;
  color: rgba(255, 255, 255, 0.8) !important;
}

/* ===== 12. FOOTER ENHANCEMENT ===== */
.footer {
  background: linear-gradient(135deg, #181a21 0%, #1e2128 50%, #23262e 100%) !important;
  position: relative !important;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 160, 23, 0.2), transparent);
}

.footer-logo span {
  font-family: var(--font-display) !important;
  font-size: 22px !important;
  font-weight: 700 !important;
  color: #ffffff !important;
}

.footer-description {
  font-size: 14px !important;
  line-height: 1.8 !important;
  color: rgba(255, 255, 255, 0.5) !important;
}

.footer-section h4 {
  font-family: var(--font-display) !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  letter-spacing: 0.02em !important;
  color: #ffffff !important;
}

.footer-section h4::after {
  width: 32px !important;
  height: 2.5px !important;
  background: var(--gold-gradient) !important;
  border-radius: 2px !important;
}

.footer-links li a {
  font-size: 14px !important;
  font-weight: 400 !important;
  color: rgba(255, 255, 255, 0.5) !important;
  transition: all var(--transition-fast) !important;
}

.footer-links li a:hover {
  color: #d4a017 !important;
  padding-left: 6px !important;
}

.footer-links li a i {
  font-size: 10px !important;
  color: #d4a017 !important;
}

.footer-contact-item {
  font-size: 14px !important;
  color: rgba(255, 255, 255, 0.5) !important;
}

.footer-contact-item i {
  color: #d4a017 !important;
}

.footer-phone-link {
  font-size: 14px !important;
  color: rgba(255, 255, 255, 0.5) !important;
}

.footer-phone-link:hover {
  color: #d4a017 !important;
}

.footer-copyright {
  font-size: 13px !important;
  color: rgba(255, 255, 255, 0.35) !important;
}

.footer-legal a {
  font-size: 13px !important;
  color: rgba(255, 255, 255, 0.35) !important;
}

.footer-legal a:hover {
  color: #d4a017 !important;
}

/* Social Link Enhancement */
.social-link {
  transition: all var(--transition-premium) !important;
}

.social-link:hover {
  transform: translateY(-4px) scale(1.1) !important;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3) !important;
}

/* ===== 13. SLIDER DOTS ENHANCEMENT ===== */
.sfm-slider-dots {
  background: rgba(0, 0, 0, 0.5) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  padding: 6px 16px !important;
  border-radius: 20px !important;
}

.sfm-slider-dot.active {
  background: #d4a017 !important;
  box-shadow: 0 0 10px rgba(212, 160, 23, 0.5) !important;
}

/* Slider Arrow Enhancement */
.sfm-slider-arrow {
  width: 44px !important;
  height: 44px !important;
  background: rgba(0, 0, 0, 0.5) !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2) !important;
}

.sfm-slider-arrow:hover {
  background: rgba(212, 160, 23, 0.6) !important;
  border-color: rgba(212, 160, 23, 0.3) !important;
  box-shadow: 0 4px 20px rgba(212, 160, 23, 0.3) !important;
}

/* ===== 14. SECTION SPACING REFINEMENT ===== */
section {
  padding: 100px 0 !important;
}

@media (max-width: 767px) {
  section {
    padding: 60px 0 !important;
  }
}

.section-header {
  margin-bottom: 48px !important;
}

@media (max-width: 767px) {
  .section-header {
    margin-bottom: 32px !important;
  }
}

/* ===== 15. HERO SUBTITLE SECTION ===== */
.hero-subtitle-section {
  background: linear-gradient(135deg, #eef0f3 0%, #f4f5f7 100%) !important;
  padding: 48px 0 !important;
}

.hero-subtitle-section .section-header h2 {
  font-family: var(--font-display) !important;
  font-size: clamp(24px, 3vw, 38px) !important;
  font-weight: 800 !important;
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle-section .section-header p {
  font-size: clamp(14px, 1.5vw, 20px) !important;
  font-weight: 600 !important;
  color: #d4a017 !important;
}

/* ===== 16. WHATSAPP FLOATING BUTTON ENHANCEMENT ===== */
.whatsapp-float {
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4), 0 0 0 4px rgba(37, 211, 102, 0.1), 0 0 40px rgba(37, 211, 102, 0.1) !important;
}

.whatsapp-float:hover {
  box-shadow: 0 12px 36px rgba(37, 211, 102, 0.5), 0 0 0 6px rgba(37, 211, 102, 0.2), 0 0 50px rgba(37, 211, 102, 0.15) !important;
}

/* ===== 17. BUTTON ENHANCEMENTS ===== */
.btn {
  border-radius: 50px !important;
  font-family: var(--font-primary) !important;
  font-weight: 600 !important;
  letter-spacing: 0.02em !important;
  transition: all var(--transition-premium) !important;
}

.btn-primary {
  background: var(--gold-gradient) !important;
  box-shadow: 0 4px 20px rgba(212, 160, 23, 0.3) !important;
}

.btn-primary:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 30px rgba(212, 160, 23, 0.4) !important;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.14) !important;
  border-color: rgba(255, 255, 255, 0.25) !important;
}

/* ===== 18. BREADCRUMB ENHANCEMENT ===== */
.breadcrumb {
  font-family: var(--font-primary) !important;
}

.breadcrumb-link {
  font-weight: 500 !important;
  color: #b8860b !important;
}

.breadcrumb-current {
  font-weight: 500 !important;
  color: #6b6f78 !important;
}

/* ===== 19. SERVICE HERO ENHANCEMENT ===== */
.service-hero {
  background: linear-gradient(135deg, #f4f5f7 0%, #eef0f3 100%) !important;
  padding: 100px 0 80px !important;
}

.service-hero-left h1 {
  font-family: var(--font-display) !important;
  font-size: clamp(32px, 3.5vw, 44px) !important;
  font-weight: 800 !important;
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2 !important;
}

.service-hero-description {
  font-size: 16px !important;
  line-height: 1.8 !important;
  color: #6b6f78 !important;
}

/* ===== 20. GLOBAL PREMIUM SCROLLBAR ===== */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #d4a017, #e8b830);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: #e8b830;
}

/* ===== 21. DESKTOP NAV CTA ENHANCEMENT ===== */
.nav-cta {
  border-radius: 50px !important;
  padding: 10px 28px !important;
  font-family: var(--font-primary) !important;
  font-weight: 600 !important;
  letter-spacing: 0.02em !important;
  box-shadow: 0 4px 20px rgba(212, 160, 23, 0.25) !important;
}

/* ===== 22. PORTFOLIO GRID SPACING ENHANCEMENT ===== */
.portfolio-grid {
  gap: 28px !important;
}

@media (min-width: 1024px) {
  .portfolio-grid {
    gap: 32px !important;
  }
}

/* ===== 23. ABOUT SECTION ENHANCEMENT ===== */
.about {
  background: linear-gradient(180deg, #f8f9fb 0%, #ffffff 100%) !important;
}

/* ===== 24. CITY LABEL ENHANCEMENT (slider overlay) ===== */
.sfm-slide .city-label {
  background: rgba(0, 0, 0, 0.6) !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
  border: 1px solid rgba(255, 215, 0, 0.2) !important;
  padding: 4px 14px !important;
  font-weight: 600 !important;
  letter-spacing: 0.06em !important;
  font-size: 11px !important;
}

/* ===== 25. SELECTION COLOR ENHANCEMENT ===== */
::selection {
  background: rgba(212, 160, 23, 0.3);
  color: #1e293b;
}

/* ===== 26. MOBILE MENU ENHANCEMENT ===== */
.mobile-menu {
  background: linear-gradient(180deg, rgba(30, 33, 41, 0.98) 0%, rgba(42, 45, 53, 0.97) 100%) !important;
  backdrop-filter: blur(30px) !important;
  -webkit-backdrop-filter: blur(30px) !important;
  border-left: 1px solid rgba(255, 255, 255, 0.06) !important;
}

.mobile-menu-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
}

.mobile-nav-link {
  font-family: var(--font-primary) !important;
  font-weight: 500 !important;
  border-radius: 12px !important;
  transition: all var(--transition-fast) !important;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  background: rgba(212, 160, 23, 0.1) !important;
  color: #d4a017 !important;
}

.mobile-cta-btn.btn-primary {
  background: var(--gold-gradient) !important;
  border-radius: 50px !important;
  box-shadow: 0 4px 15px rgba(212, 160, 23, 0.3) !important;
}

/* ===== 27. HAMBURGER ENHANCEMENT ===== */
.hamburger {
  background: rgba(255, 255, 255, 0.06) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 12px !important;
  transition: all var(--transition-fast) !important;
}

.hamburger:hover {
  background: rgba(255, 255, 255, 0.1) !important;
  border-color: rgba(255, 255, 255, 0.15) !important;
}

/* ===== 28. HERO VIDEO OVERLAY ENHANCEMENT ===== */
.hero-video-overlay {
  background: linear-gradient(135deg, 
    rgba(0, 0, 0, 0.5) 0%, 
    rgba(0, 0, 0, 0.3) 50%,
    rgba(0, 0, 0, 0.4) 100%) !important;
}

/* ===== 29. SERVICE PAGE CTA ENHANCEMENT ===== */
.service-cta-section h2 {
  font-size: clamp(20px, 2.5vw, 30px) !important;
}

/* ===== 30. FLOATING ELEMENTS GLASSMORPHISM ===== */
.floating-element {
  background: rgba(255, 255, 255, 0.08) !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1) !important;
}

/* ===== RESPONSIVE TWEAKS ===== */
@media (max-width: 767px) {
  .portfolio-item .portfolio-image {
    height: 240px !important;
  }
  
  .team-collab-card .team-collab-image {
    height: 260px !important;
  }
  
  .stat-card {
    padding: 28px 16px !important;
  }
  
  .stat-number {
    font-size: 34px !important;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .portfolio-item .portfolio-image {
    height: 280px !important;
  }
}

@media (min-width: 1400px) {
  .portfolio-item .portfolio-image {
    height: 380px !important;
  }
  
  .portfolio-grid {
    gap: 36px !important;
  }
}

/* ===== PRINT OPTIMIZATION ===== */
@media print {
  .header, .whatsapp-float, .footer {
    display: none !important;
  }
}

/* ===== ACCESSIBILITY: FOCUS VISIBLE ===== */
*:focus-visible {
  outline: 2px solid #d4a017;
  outline-offset: 2px;
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}