/* 
  Sur Marketplace - Premium Stylesheet
  Domain: surmarketplace.cl
*/

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

:root {
  /* Color Palette - Vibrant White & Orange Theme */
  --primary: #FF6B00;
  --primary-light: #FF8533;
  --primary-dark: #E65100;
  --primary-glow: rgba(255, 107, 0, 0.25);
  
  --secondary: #FB8C00;
  --secondary-light: #FFB74D;
  --accent: #FF5722;
  --accent-light: #FF7043;
  
  /* Neutral Palette - White & Light Slate */
  --bg-light: #FFFFFF;
  --bg-alt-light: #FFFBF7;
  --bg-card-light: #FFFFFF;
  --border-light: rgba(255, 107, 0, 0.12);
  
  --bg-dark: #0F172A;
  --bg-card-dark: #1E293B;
  --border-dark: rgba(255, 255, 255, 0.1);
  
  --text-light: #0F172A;
  --text-light-muted: #475569;
  --text-dark: #F8FAFC;
  --text-dark-muted: #94A3B8;
  
  /* Glassmorphism & UI defaults */
  --glass-bg: rgba(15, 23, 42, 0.75);
  --glass-border: rgba(255, 255, 255, 0.1);
  --glass-light-bg: rgba(255, 255, 255, 0.94);
  --glass-light-border: rgba(255, 107, 0, 0.12);
  
  --shadow-sm: 0 4px 12px -2px rgba(255, 107, 0, 0.06);
  --shadow-md: 0 12px 24px -6px rgba(255, 107, 0, 0.1);
  --shadow-lg: 0 20px 35px -8px rgba(255, 107, 0, 0.14), 0 10px 15px -5px rgba(0, 0, 0, 0.03);
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
}

/* Base Styles & Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-light);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
  transition: var(--transition-smooth);
}

body.dark-mode {
  background-color: var(--bg-dark);
  color: var(--text-dark);
}

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

p {
  color: var(--text-light-muted);
}

body.dark-mode p {
  color: var(--text-dark-muted);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-smooth);
}

/* Common Layout Components */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 8rem 0;
}

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition-smooth);
  border-bottom: 1px solid transparent;
}

header.scrolled {
  background-color: var(--glass-light-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--glass-light-border);
  padding: 1rem 0;
}

body.dark-mode header.scrolled {
  background-color: var(--glass-bg);
  border-bottom: 1px solid var(--glass-border);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  transition: var(--transition-smooth);
}

header.scrolled .nav-container {
  padding: 0.5rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

body.dark-mode .logo {
  background: linear-gradient(135deg, var(--secondary-light), var(--primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.logo-icon {
  width: 2.2rem;
  height: 2.2rem;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 800;
  font-size: 1.2rem;
  box-shadow: var(--shadow-sm);
}

body.dark-mode .logo-icon {
  background: linear-gradient(135deg, var(--secondary-light), var(--primary-light));
}

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

.nav-link {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-light-muted);
}

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

body.dark-mode .nav-link {
  color: var(--text-dark-muted);
}

body.dark-mode .nav-link:hover, body.dark-mode .nav-link.active {
  color: var(--secondary-light);
}

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: none;
  gap: 0.5rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white;
  box-shadow: 0 6px 20px 0 rgba(255, 107, 0, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px 0 rgba(255, 107, 0, 0.45);
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
}

.btn-secondary {
  background: transparent;
  color: var(--text-light);
  border: 2px solid var(--primary);
}

body.dark-mode .btn-secondary {
  color: var(--text-dark);
  border-color: var(--primary-light);
}

.btn-secondary:hover {
  background: rgba(255, 107, 0, 0.08);
  transform: translateY(-2px);
  color: var(--primary-dark);
}

body.dark-mode .btn-secondary:hover {
  background: rgba(56, 189, 248, 0.05);
}

.theme-toggle {
  background: transparent;
  border: none;
  cursor: pointer;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light-muted);
  border: 1px solid var(--glass-light-border);
  transition: var(--transition-smooth);
}

body.dark-mode .theme-toggle {
  color: var(--text-dark-muted);
  border-color: var(--glass-border);
}

.theme-toggle:hover {
  background: rgba(0, 0, 0, 0.03);
  color: var(--primary);
}

body.dark-mode .theme-toggle:hover {
  background: rgba(255, 255, 255, 0.03);
  color: var(--secondary-light);
}

/* Mobile Nav Toggle */
.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 1.5rem;
  color: var(--text-light);
}

body.dark-mode .nav-toggle {
  color: var(--text-dark);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 8rem;
  background-color: var(--bg-light);
  overflow: hidden;
}

body.dark-mode .hero {
  background-color: var(--bg-dark);
}

.hero::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -10%;
  width: 55%;
  height: 65%;
  background: radial-gradient(circle, rgba(255, 107, 0, 0.15) 0%, transparent 70%);
  z-index: 1;
  border-radius: 50%;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -10%;
  width: 45%;
  height: 55%;
  background: radial-gradient(circle, rgba(255, 136, 0, 0.12) 0%, transparent 70%);
  z-index: 1;
  border-radius: 50%;
}

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

.hero-tagline {
  display: inline-block;
  padding: 0.4rem 1.1rem;
  background: rgba(255, 107, 0, 0.08);
  color: var(--primary-dark);
  border: 1px solid rgba(255, 107, 0, 0.2);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}

body.dark-mode .hero-tagline {
  background: rgba(56, 189, 248, 0.08);
  color: var(--secondary-light);
}

.hero-title {
  font-size: 3.75rem;
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: var(--text-light);
}

body.dark-mode .hero-title {
  color: var(--text-dark);
}

.hero-title span {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

body.dark-mode .hero-title span {
  background: linear-gradient(135deg, var(--secondary-light), var(--primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: 1.125rem;
  margin-bottom: 2.5rem;
}

.hero-buttons {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  gap: 3rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  padding-top: 2rem;
}

body.dark-mode .hero-stats {
  border-top-color: rgba(255, 255, 255, 0.06);
}

.stat-item h3 {
  font-size: 2rem;
  color: var(--primary);
}

body.dark-mode .stat-item h3 {
  color: var(--secondary-light);
}

.stat-item p {
  font-size: 0.85rem;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.05em;
}

/* Hero Visual Graphic */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.glass-card-mockup {
  background: var(--glass-light-bg);
  border: 1px solid var(--glass-light-border);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 1.5rem;
  padding: 2rem;
  width: 100%;
  max-width: 450px;
  box-shadow: var(--shadow-lg);
  transform: rotate(-2deg);
  transition: var(--transition-smooth);
}

body.dark-mode .glass-card-mockup {
  background: var(--glass-bg);
  border-color: var(--glass-border);
}

.glass-card-mockup:hover {
  transform: rotate(0deg) scale(1.02);
}

.mockup-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.mockup-dot-group {
  display: flex;
  gap: 0.35rem;
}

.mockup-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #EF4444;
}

.mockup-dot:nth-child(2) { background-color: #F59E0B; }
.mockup-dot:nth-child(3) { background-color: #10B981; }

.mockup-search {
  height: 2rem;
  border-radius: 50px;
  background: rgba(0, 0, 0, 0.04);
  width: 60%;
  display: flex;
  align-items: center;
  padding: 0 1rem;
  font-size: 0.75rem;
  color: var(--text-light-muted);
}

body.dark-mode .mockup-search {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-dark-muted);
}

.mockup-image {
  width: 100%;
  height: 220px;
  border-radius: 1rem;
  background: linear-gradient(135deg, rgba(15, 90, 71, 0.1), rgba(2, 132, 199, 0.15));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(0, 0, 0, 0.05);
  overflow: hidden;
  position: relative;
}

body.dark-mode .mockup-image {
  border-color: rgba(255, 255, 255, 0.05);
}

.mockup-tag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--accent);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  box-shadow: var(--shadow-sm);
}

.mockup-details {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mockup-title {
  font-size: 1.25rem;
  font-weight: 700;
}

.mockup-price {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--primary);
}

body.dark-mode .mockup-price {
  color: var(--secondary-light);
}

.mockup-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.5rem;
  font-size: 0.8rem;
  color: var(--text-light-muted);
}

body.dark-mode .mockup-meta {
  color: var(--text-dark-muted);
}

/* Features Section */
.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 5rem auto;
}

.section-tag {
  color: var(--primary);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
  display: inline-block;
}

body.dark-mode .section-tag {
  color: var(--secondary-light);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
}

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

.feature-card {
  background: var(--bg-card-light);
  border-radius: 1.5rem;
  padding: 2.5rem;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

body.dark-mode .feature-card {
  background: var(--bg-card-dark);
  border-color: rgba(255, 255, 255, 0.04);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(15, 90, 71, 0.15);
}

body.dark-mode .feature-card:hover {
  border-color: rgba(56, 189, 248, 0.2);
}

.feature-icon {
  width: 3.5rem;
  height: 3.5rem;
  background: rgba(15, 90, 71, 0.06);
  color: var(--primary);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  transition: var(--transition-smooth);
}

body.dark-mode .feature-icon {
  background: rgba(56, 189, 248, 0.06);
  color: var(--secondary-light);
}

.feature-card:hover .feature-icon {
  background: var(--primary);
  color: white;
  transform: scale(1.05);
}

body.dark-mode .feature-card:hover .feature-icon {
  background: var(--secondary-light);
  color: var(--bg-dark);
}

.feature-title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.feature-desc {
  font-size: 0.95rem;
}

/* About / South Chile Section */
.about {
  background-color: rgba(15, 90, 71, 0.02);
  position: relative;
}

body.dark-mode .about {
  background-color: rgba(11, 15, 25, 0.7);
}

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

.about-visual {
  position: relative;
}

.about-img-wrapper {
  position: relative;
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-img-placeholder {
  width: 100%;
  height: 400px;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.about-overlay-card {
  position: absolute;
  bottom: 2rem;
  right: -2rem;
  background: var(--bg-card-light);
  border-radius: 1.25rem;
  padding: 1.5rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(0, 0, 0, 0.05);
  max-width: 280px;
  backdrop-filter: blur(10px);
}

body.dark-mode .about-overlay-card {
  background: rgba(18, 24, 38, 0.85);
  border-color: rgba(255, 255, 255, 0.05);
}

.about-overlay-card h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--primary);
}

body.dark-mode .about-overlay-card h4 {
  color: var(--secondary-light);
}

.about-overlay-card p {
  font-size: 0.85rem;
}

.about-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.about-content p {
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.about-checklist {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

.checklist-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  font-size: 0.95rem;
}

.checklist-icon {
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

body.dark-mode .checklist-icon {
  color: var(--secondary-light);
}

/* How It Works Section */
.steps-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.steps-column {
  background: var(--bg-card-light);
  border-radius: 2rem;
  padding: 3rem;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: var(--shadow-sm);
}

body.dark-mode .steps-column {
  background: var(--bg-card-dark);
  border-color: rgba(255, 255, 255, 0.04);
}

.steps-header-title {
  font-size: 1.75rem;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--primary);
}

body.dark-mode .steps-header-title {
  color: var(--secondary-light);
}

.steps-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.step-item {
  display: flex;
  gap: 1.5rem;
}

.step-num {
  font-size: 1.25rem;
  font-weight: 800;
  color: white;
  background: var(--primary);
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

body.dark-mode .step-num {
  background: var(--secondary);
}

.step-content h4 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.step-content p {
  font-size: 0.9rem;
}

/* Call To Action (CTA) */
.cta {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: white;
  border-radius: 2.5rem;
  padding: 5rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.cta::before {
  content: '';
  position: absolute;
  top: -20%;
  left: -20%;
  width: 60%;
  height: 100%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 60%);
}

.cta-content {
  position: relative;
  z-index: 5;
  max-width: 650px;
  margin: 0 auto;
}

.cta-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: white;
}

.cta-desc {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2.5rem;
}

.cta-form {
  display: flex;
  gap: 0.75rem;
  max-width: 500px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.08);
  padding: 0.4rem;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
}

.cta-input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 0 1.5rem;
  color: white;
  font-size: 0.95rem;
  outline: none;
  font-family: var(--font-body);
}

.cta-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.cta-btn {
  background: var(--accent);
  color: white;
  box-shadow: 0 4px 10px rgba(245, 158, 11, 0.3);
}

.cta-btn:hover {
  background: var(--accent-light);
  transform: translateY(0) scale(1.02);
}

/* Footer */
footer {
  background-color: #0B0F19;
  color: #94A3B8;
  padding: 5rem 0 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.footer-brand h3 {
  color: white;
  margin-bottom: 1rem;
}

.footer-desc {
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.1rem;
}

.social-icon:hover {
  background: var(--primary);
  transform: translateY(-3px);
}

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

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

.footer-link {
  font-size: 0.9rem;
}

.footer-link:hover {
  color: white;
  padding-left: 4px;
}

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

.footer-faith {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  font-size: 0.8rem;
  font-style: italic;
  color: rgba(245, 158, 11, 0.6);
  letter-spacing: 0.03em;
}

.footer-faith i {
  font-size: 0.65rem;
  opacity: 0.5;
}

.footer-faith span {
  color: rgba(245, 158, 11, 0.65);
}

/* =============================================
   Services Section
   ============================================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 6rem;
}

.service-card {
  background: var(--bg-card-light);
  border-radius: 1.75rem;
  padding: 2.5rem 2rem;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition-smooth);
}

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

body.dark-mode .service-card {
  background: var(--bg-card-dark);
  border-color: rgba(255, 255, 255, 0.05);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(15, 90, 71, 0.1);
}

body.dark-mode .service-card:hover {
  border-color: rgba(56, 189, 248, 0.15);
}

.service-icon-wrap {
  width: 4rem;
  height: 4rem;
  background: linear-gradient(135deg, rgba(15, 90, 71, 0.08), rgba(2, 132, 199, 0.08));
  color: var(--primary);
  border-radius: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  transition: var(--transition-smooth);
}

body.dark-mode .service-icon-wrap {
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.08), rgba(30, 142, 115, 0.08));
  color: var(--secondary-light);
}

.service-card:hover .service-icon-wrap {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white;
  transform: rotate(-5deg) scale(1.05);
}

body.dark-mode .service-card:hover .service-icon-wrap {
  background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
  color: var(--bg-dark);
}

.service-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text-light);
}

body.dark-mode .service-title {
  color: var(--text-dark);
}

.service-desc {
  font-size: 0.9rem;
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.service-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-light-muted);
}

body.dark-mode .service-features li {
  color: var(--text-dark-muted);
}

.service-features li i {
  color: var(--primary);
  font-size: 0.75rem;
}

body.dark-mode .service-features li i {
  color: var(--secondary-light);
}

/* =============================================
   Offer Services to Clients Section
   ============================================= */
.offer-services-wrapper {
  margin-top: 2rem;
}

.offer-services-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 4rem auto;
}

.offer-services-header strong {
  color: var(--primary);
}

body.dark-mode .offer-services-header strong {
  color: var(--secondary-light);
}

.offer-services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.offer-services-intro {
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 2rem;
}

/* Service Type Pills */
.service-types-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.service-type-pill {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 0.5rem;
  background: var(--bg-card-light);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 1rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-light-muted);
  cursor: default;
  transition: var(--transition-smooth);
  text-align: center;
}

body.dark-mode .service-type-pill {
  background: var(--bg-card-dark);
  border-color: rgba(255, 255, 255, 0.05);
  color: var(--text-dark-muted);
}

.service-type-pill i {
  font-size: 1.2rem;
  color: var(--primary);
}

body.dark-mode .service-type-pill i {
  color: var(--secondary-light);
}

.service-type-pill:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

body.dark-mode .service-type-pill:hover {
  background: var(--secondary);
  border-color: var(--secondary);
}

.service-type-pill:hover i {
  color: white;
}

/* Features list */
.offer-services-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.offer-services-features li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.osf-icon {
  width: 2rem;
  height: 2rem;
  min-width: 2rem;
  background: rgba(15, 90, 71, 0.08);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  margin-top: 0.15rem;
}

body.dark-mode .osf-icon {
  background: rgba(56, 189, 248, 0.08);
  color: var(--secondary-light);
}

.offer-services-features li strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 0.2rem;
}

body.dark-mode .offer-services-features li strong {
  color: var(--text-dark);
}

.offer-services-features li span {
  font-size: 0.85rem;
  color: var(--text-light-muted);
}

body.dark-mode .offer-services-features li span {
  color: var(--text-dark-muted);
}

/* Mockup service card */
.offer-services-mockup {
  display: flex;
  justify-content: center;
  align-items: center;
}

.service-mockup-card {
  background: var(--bg-card-light);
  border-radius: 2rem;
  padding: 2.5rem;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: var(--shadow-lg);
  width: 100%;
  max-width: 420px;
  transition: var(--transition-smooth);
  position: relative;
}

body.dark-mode .service-mockup-card {
  background: var(--bg-card-dark);
  border-color: rgba(255, 255, 255, 0.06);
}

.service-mockup-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -15px rgba(15, 90, 71, 0.18);
}

.smc-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.3rem 0.9rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}

.smc-avatar {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.smc-avatar-info strong {
  display: block;
  font-size: 0.95rem;
  font-family: var(--font-heading);
  color: var(--text-light);
}

body.dark-mode .smc-avatar-info strong {
  color: var(--text-dark);
}

.smc-avatar-info span {
  font-size: 0.8rem;
  color: var(--text-light-muted);
}

.smc-avatar-info span i {
  color: var(--primary);
  font-size: 0.7rem;
}

body.dark-mode .smc-avatar-info span {
  color: var(--text-dark-muted);
}

.smc-title {
  font-size: 1.15rem;
  font-family: var(--font-heading);
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text-light);
  line-height: 1.35;
}

body.dark-mode .smc-title {
  color: var(--text-dark);
}

.smc-desc {
  font-size: 0.875rem;
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.smc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.smc-tags span {
  background: rgba(15, 90, 71, 0.07);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
}

body.dark-mode .smc-tags span {
  background: rgba(56, 189, 248, 0.08);
  color: var(--secondary-light);
}

.smc-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

body.dark-mode .smc-footer {
  border-top-color: rgba(255, 255, 255, 0.05);
}

.smc-price {
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
}

.smc-from {
  font-size: 0.78rem;
  color: var(--text-light-muted);
}

body.dark-mode .smc-from {
  color: var(--text-dark-muted);
}

.smc-price strong {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--primary);
}

body.dark-mode .smc-price strong {
  color: var(--secondary-light);
}

.smc-unit {
  font-size: 0.8rem;
  color: var(--text-light-muted);
}

body.dark-mode .smc-unit {
  color: var(--text-dark-muted);
}

.smc-rating {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  color: #F59E0B;
  font-size: 0.85rem;
}

.smc-rating span {
  font-weight: 700;
  color: var(--text-light);
  margin-left: 0.25rem;
}

body.dark-mode .smc-rating span {
  color: var(--text-dark);
}

.smc-btn {
  width: 100%;
  justify-content: center;
}

/* =============================================
   Animations & Scroll reveal defaults
   ============================================= */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Responsiveness */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 3rem;
  }
  .about-grid {
    gap: 3rem;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .offer-services-grid {
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 5rem 0;
  }
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--bg-light);
    border-bottom: 1px solid var(--glass-light-border);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    box-shadow: var(--shadow-md);
  }
  
  body.dark-mode .nav-menu {
    background: var(--bg-dark);
    border-color: var(--glass-border);
  }
  
  .nav-menu.open {
    display: flex;
  }
  
  .nav-toggle {
    display: block;
  }
  
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }
  
  .hero-buttons {
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
  }
  
  .hero-stats {
    justify-content: center;
    gap: 1.5rem;
  }
  
  .stat-item h3 {
    font-size: 1.75rem;
  }
  
  .stat-item p {
    font-size: 0.75rem;
  }
  
  .hero-visual {
    order: -1;
  }
  
  .about-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  
  .about-overlay-card {
    right: 1rem;
    bottom: -1rem;
  }
  
  .steps-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .cta {
    padding: 4rem 1.5rem;
  }
  
  .cta-title {
    font-size: 2.25rem;
  }
  
  .cta-form {
    flex-direction: column;
    border-radius: 1.5rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
  }
  
  .cta-input {
    padding: 0.75rem;
    text-align: center;
  }
  
  .cta-btn {
    border-radius: 50px;
    width: 100%;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .offer-services-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .service-types-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .offer-services-mockup {
    order: -1;
  }
}

/* Gallery Section Styles */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.gallery-item {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  height: 320px;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--glass-border);
  transition: var(--transition-smooth);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(11, 15, 25, 0.95) 0%, rgba(11, 15, 25, 0.4) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem 1.5rem;
  opacity: 0;
  transition: var(--transition-smooth);
  backdrop-filter: blur(3px);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-category {
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--secondary-light);
  letter-spacing: 0.1em;
  margin-bottom: 0.25rem;
}

.gallery-title {
  color: white;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.gallery-price {
  color: var(--accent-light);
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.gallery-location {
  color: var(--text-dark-muted);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

/* Lightbox Modal */
.lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(11, 15, 25, 0.95);
  backdrop-filter: blur(10px);
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.lightbox.open {
  display: flex;
  opacity: 1;
}

.lightbox-close {
  position: absolute;
  top: 2rem;
  right: 3rem;
  color: white;
  font-size: 3rem;
  font-weight: 300;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.lightbox-close:hover {
  color: var(--accent);
}

.lightbox-content {
  max-width: 800px;
  width: 90%;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: zoomIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes zoomIn {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.lightbox-content img {
  max-width: 100%;
  max-height: 60vh;
  border-radius: 1.5rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.lightbox-caption {
  margin-top: 1.5rem;
  text-align: center;
  color: white;
}

.lightbox-caption h3 {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.lightbox-caption p {
  color: var(--text-dark-muted) !important;
  margin-bottom: 0.25rem;
}

@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .gallery-overlay {
    opacity: 1;
    background: linear-gradient(to top, rgba(11, 15, 25, 0.95) 0%, rgba(11, 15, 25, 0.65) 60%, rgba(11, 15, 25, 0.1) 100%);
  }
  
  .nav-actions {
    gap: 0.75rem;
  }
}

@media (max-width: 640px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  #headerCtaBtn {
    display: none;
  }
  
  .logo {
    font-size: 1.25rem;
  }
  
  .logo-icon {
    width: 1.8rem;
    height: 1.8rem;
    font-size: 1rem;
  }
}

@media (max-width: 420px) {
  .hero-title {
    font-size: 2.35rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    width: 100%;
    align-items: stretch;
  }
  
  .hero-buttons .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
  
  .hero-stats {
    gap: 0.75rem;
    width: 100%;
    justify-content: space-between;
  }
  
  .stat-item h3 {
    font-size: 1.4rem;
  }
  
  .stat-item p {
    font-size: 0.65rem;
    letter-spacing: 0.02em;
  }
}

/* Gallery Showcase CTA Card */
.gallery-cta {
  margin-top: 4rem;
  text-align: center;
  background: rgba(15, 90, 71, 0.03);
  padding: 3.5rem 2rem;
  border-radius: 2rem;
  border: 1px dashed var(--primary-light);
  transition: var(--transition-smooth);
}

body.dark-mode .gallery-cta {
  background: rgba(30, 142, 115, 0.02);
  border-color: rgba(56, 189, 248, 0.25);
}

.gallery-cta:hover {
  transform: translateY(-5px);
  background: rgba(15, 90, 71, 0.06);
  box-shadow: var(--shadow-md);
}

body.dark-mode .gallery-cta:hover {
  background: rgba(30, 142, 115, 0.05);
}

.gallery-cta-title {
  font-size: 1.85rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

body.dark-mode .gallery-cta-title {
  color: var(--secondary-light);
}

.gallery-cta-desc {
  max-width: 600px;
  margin: 0 auto 2rem;
  font-size: 1.05rem;
  line-height: 1.6;
}

.gallery-cta-btn {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  animation: pulse-glow 2.5s infinite;
}

@keyframes pulse-glow {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 107, 0, 0.4);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(255, 107, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 107, 0, 0);
  }
}

/* ── Dynamic Interactivity & Animation Additions ──────────────────────── */

/* Hero Canvas Background */
.hero-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

/* Floating Notification Badges */
.floating-badge {
  position: absolute;
  z-index: 10;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 107, 0, 0.2);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 0.75rem 1.2rem;
  border-radius: 1rem;
  box-shadow: 0 15px 35px -5px rgba(255, 107, 0, 0.18);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.85rem;
}

.floating-badge i {
  font-size: 1.4rem;
}

.floating-badge div {
  display: flex;
  flex-direction: column;
}

.floating-badge strong {
  color: #0F172A;
  font-size: 0.88rem;
}

.floating-badge span {
  color: #64748B;
  font-size: 0.75rem;
}

.badge-top-right {
  top: 10%;
  right: -5%;
}

.badge-bottom-left {
  bottom: 8%;
  left: -8%;
}

.float-anim-1 {
  animation: floatSlow 4.5s ease-in-out infinite;
}

.float-anim-2 {
  animation: floatSlow 5.2s ease-in-out infinite 1s;
}

@keyframes floatSlow {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(1.5deg); }
}

/* Typing Cursor */
.typing-cursor {
  display: inline-block;
  color: #FF6B00;
  font-weight: 700;
  animation: blink 0.8s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* Infinite Marquee Ticker Banner */
.marquee-ticker {
  width: 100%;
  overflow: hidden;
  background: linear-gradient(90deg, #FF6B00 0%, #FF8800 100%);
  padding: 0.9rem 0;
  white-space: nowrap;
  box-shadow: 0 10px 25px -5px rgba(255, 107, 0, 0.3);
  position: relative;
  z-index: 5;
}

.marquee-track {
  display: inline-flex;
  gap: 3rem;
  animation: marqueeScroll 28s linear infinite;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: white;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

.ticker-item i {
  font-size: 1.1rem;
  opacity: 0.9;
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Interactive Category Tabs Filter */
.category-tabs-container {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.cat-tab {
  background: var(--bg-light);
  border: 1.5px solid rgba(255, 107, 0, 0.15);
  color: var(--text-light-muted);
  padding: 0.65rem 1.4rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition-smooth);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.cat-tab:hover {
  border-color: #FF6B00;
  color: #FF6B00;
  transform: translateY(-2px);
}

.cat-tab.active {
  background: linear-gradient(135deg, #FF6B00, #FF8800);
  color: white;
  border-color: transparent;
  box-shadow: 0 6px 18px rgba(255, 107, 0, 0.35);
}

/* Smooth Scale Gallery Item Transition */
.gallery-item {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease, box-shadow 0.4s ease;
}
