/* BrandsAmplify - Main Stylesheet */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400&display=swap');

:root {
  --blue: #1a6dff;
  --blue-dark: #0d4fcb;
  --blue-light: #4d8fff;
  --orange: #ff5a1a;
  --orange-dark: #e04510;
  --orange-light: #ff7a45;
  --dark: #05080f;
  --dark-2: #0d1117;
  --dark-3: #161b27;
  --dark-4: #1e2435;
  --dark-5: #252d42;
  --light: #f0f4ff;
  --light-2: #e0e8ff;
  --light-3: #c8d6ff;
  --text-dark: #a8b8d8;
  --text-muted: #6b7a99;
  --white: #ffffff;
  --border: rgba(255,255,255,0.08);
  --card-bg: rgba(30, 36, 53, 0.8);
  --gradient: linear-gradient(135deg, var(--blue) 0%, var(--orange) 100%);
  --gradient-rev: linear-gradient(135deg, var(--orange) 0%, var(--blue) 100%);
  --shadow: 0 8px 32px rgba(26,109,255,0.15);
  --shadow-orange: 0 8px 32px rgba(255,90,26,0.15);
  --radius: 16px;
  --radius-sm: 10px;
  --transition: all 0.3s ease;
}

/* Light Mode */
body.light-mode {
  --dark: #f0f4ff;
  --dark-2: #e8eeff;
  --dark-3: #dce6ff;
  --dark-4: #d0dcff;
  --dark-5: #c4d2ff;
  --text-dark: #1a2340;
  --text-muted: #4a5568;
  --border: rgba(0,0,0,0.1);
  --card-bg: rgba(255,255,255,0.9);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  background: var(--dark);
  color: var(--text-dark);
  line-height: 1.7;
  transition: background 0.3s, color 0.3s;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 { color: var(--white); font-weight: 700; line-height: 1.3; }
body.light-mode h1,
body.light-mode h2,
body.light-mode h3,
body.light-mode h4 { color: var(--text-dark); }

a { color: var(--blue); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--orange); }

p { color: var(--text-dark); }

/* ========== NAVBAR ========== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 5%;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(5, 8, 15, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

body.light-mode .navbar {
  background: rgba(240, 244, 255, 0.9);
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.navbar.scrolled {
  background: rgba(5, 8, 15, 0.98);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.nav-logo {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  height: 72px;
}

.nav-logo img {
  height: 46px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  display: block;
}

.nav-logo span:first-child { color: var(--blue); }
.nav-logo span:last-child {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.nav-links a {
  color: var(--text-dark);
  font-size: 0.9rem;
  font-weight: 500;
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gradient);
  transition: width 0.3s;
}

.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a:hover { color: var(--white); }
body.light-mode .nav-links a:hover { color: var(--text-dark); }

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

.theme-toggle {
  width: 44px; height: 44px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: var(--dark-3);
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
}

.theme-toggle:hover {
  background: var(--blue);
  color: white;
  border-color: var(--blue);
}

.btn-nav {
  padding: 8px 20px;
  background: var(--gradient);
  color: white !important;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.85rem;
}

.btn-nav:hover { opacity: 0.9; transform: translateY(-1px); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}

.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition);
}

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0; left: 0; bottom: 0;
  width: 280px;
  background: var(--dark-2);
  border-right: 1px solid var(--border);
  z-index: 1001;
  overflow-y: auto;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  padding: 0;
}

.mobile-nav.open {
  display: block;
  transform: translateX(0);
}

/* Overlay when menu open */
.mob-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 1000;
}
.mob-overlay.show { display: block; }

/* Mobile nav header */
.mobile-nav::before {
  content: '';
  display: block;
  height: 72px;
  background: var(--dark-3);
  border-bottom: 1px solid var(--border);
}

.mobile-nav ul {
  list-style: none;
  padding: 12px 0;
}

/* Section labels */
.mob-section-label {
  padding: 14px 20px 4px;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* Regular nav links */
.mobile-nav li a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 20px;
  color: var(--text-dark);
  font-weight: 500;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.2s;
  border-left: 3px solid transparent;
}

.mobile-nav li a i:first-child {
  width: 18px;
  text-align: center;
  color: var(--blue);
  font-size: 0.9rem;
}

.mobile-nav li a:hover {
  background: var(--dark-4);
  color: var(--white);
  border-left-color: var(--blue);
}

/* Login links special style */
.mob-login-link {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  padding: 12px 20px !important;
  margin: 4px 10px !important;
  border-radius: 10px !important;
  border: 1px solid var(--border) !important;
  border-left: 3px solid transparent !important;
}

.mob-login-link span {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.mob-login-link strong {
  font-size: 0.85rem;
  color: var(--white);
  font-weight: 600;
}

.mob-login-link small {
  font-size: 0.7rem;
  color: var(--text-muted);
}

.mob-login-link.infl { border-left-color: var(--blue) !important; }
.mob-login-link.infl i { color: var(--blue) !important; font-size: 1.1rem !important; }
.mob-login-link.infl:hover { background: rgba(26,109,255,0.1) !important; }

.mob-login-link.brand { border-left-color: var(--orange) !important; }
.mob-login-link.brand i { color: var(--orange) !important; font-size: 1.1rem !important; }
.mob-login-link.brand:hover { background: rgba(255,90,26,0.1) !important; }

.mob-login-link.reg { border-left-color: #22c55e !important; }
.mob-login-link.reg i { color: #22c55e !important; font-size: 1.1rem !important; }
.mob-login-link.reg:hover { background: rgba(34,197,94,0.1) !important; }

/* CTA Button */
.mob-cta-btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  margin: 8px 16px 16px !important;
  padding: 13px 20px !important;
  background: linear-gradient(135deg, var(--blue), var(--orange)) !important;
  color: white !important;
  border-radius: 50px !important;
  font-weight: 700 !important;
  font-size: 0.9rem !important;
  border: none !important;
}

.mob-cta-btn:hover {
  opacity: 0.9 !important;
  transform: none !important;
}

/* WhatsApp Floating */
.whatsapp-float {
  position: fixed;
  bottom: 30px; right: 30px;
  z-index: 999;
  width: 60px; height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  box-shadow: 0 6px 30px rgba(37,211,102,0.4);
  animation: pulse-green 2s infinite;
  transition: transform 0.3s;
}

.whatsapp-float:hover { transform: scale(1.1); color: white; }

@keyframes pulse-green {
  0%, 100% { box-shadow: 0 6px 30px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 6px 40px rgba(37,211,102,0.7); }
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  font-family: 'Poppins', sans-serif;
}

.btn-primary {
  background: var(--gradient);
  color: white;
  box-shadow: var(--shadow);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(26,109,255,0.35);
  color: white;
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--blue);
}

.btn-outline:hover {
  background: var(--blue);
  color: white;
  transform: translateY(-3px);
}

.btn-orange {
  background: var(--orange);
  color: white;
}

.btn-orange:hover {
  background: var(--orange-dark);
  transform: translateY(-3px);
  color: white;
}

.btn-sm { padding: 8px 20px; font-size: 0.85rem; }

/* ========== LOGIN DROPDOWN ========== */
.login-dropdown {
  position: relative;
}

.login-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 9px 16px;
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: 50px;
  color: var(--text-dark);
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.login-btn:hover {
  background: var(--blue);
  color: white;
  border-color: var(--blue);
}

body.light-mode .login-btn {
  background: #e8eeff;
  border-color: #d0dcff;
  color: var(--text-dark);
}

.login-menu {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 8px;
  min-width: 240px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
  z-index: 999;
  animation: dropIn 0.2s ease;
}

body.light-mode .login-menu {
  background: white;
  box-shadow: 0 16px 40px rgba(0,0,0,0.12);
}

.login-menu.open { display: block; }

@keyframes dropIn {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.login-menu-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: var(--transition);
  color: var(--text-dark);
}

.login-menu-item:hover {
  background: var(--dark-4);
  color: var(--white);
}

body.light-mode .login-menu-item:hover {
  background: #f0f4ff;
  color: var(--text-dark);
}

.lmi-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.lmi-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1px;
}

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

.lmi-sub {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.lmi-divider {
  height: 1px;
  background: var(--border);
  margin: 6px 0;
}

/* ========== SECTION STYLES ========== */
section { padding: 100px 0; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 5%; }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(26,109,255,0.15);
  border: 1px solid rgba(26,109,255,0.3);
  color: var(--blue);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
}

.text-center { text-align: center; }
.text-center .section-subtitle { margin: 0 auto; }

.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ========== HERO ========== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 72px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--dark);
}

.hero-bg::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 80%;
  height: 100%;
  background: radial-gradient(ellipse, rgba(26,109,255,0.12) 0%, transparent 70%);
  animation: float 8s ease-in-out infinite;
}

.hero-bg::after {
  content: '';
  position: absolute;
  bottom: -30%;
  right: -10%;
  width: 60%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(255,90,26,0.08) 0%, transparent 70%);
  animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-30px); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 750px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(26,109,255,0.1);
  border: 1px solid rgba(26,109,255,0.25);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.82rem;
  color: var(--blue);
  font-weight: 600;
  margin-bottom: 24px;
  animation: fadeInDown 0.8s ease;
}

.hero-badge .dot {
  width: 8px; height: 8px;
  background: var(--orange);
  border-radius: 50%;
  animation: blink 1.5s infinite;
}

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

.hero h1 {
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero p {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: 2.5rem;
  animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-stats {
  display: flex;
  gap: 3rem;
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid var(--border);
  animation: fadeInUp 0.8s ease 0.8s both;
}

.hero-stat-num {
  font-size: 2rem;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-stat-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.75rem;
  animation: bounce 2s infinite;
}

.scroll-indicator .mouse {
  width: 24px; height: 38px;
  border: 2px solid var(--text-muted);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.scroll-indicator .wheel {
  width: 4px; height: 8px;
  background: var(--blue);
  border-radius: 2px;
  animation: scroll-wheel 1.5s ease infinite;
}

@keyframes scroll-wheel {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(12px); opacity: 0; }
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ========== STATS COUNTER ========== */
.stats-section {
  padding: 60px 0;
  background: var(--dark-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.stat-card {
  text-align: center;
  padding: 2rem;
  background: var(--card-bg);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.stat-card:hover { transform: translateY(-5px); border-color: var(--blue); }

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

.stat-number {
  font-size: 2.8rem;
  font-weight: 900;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
}

.stat-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ========== SERVICES ========== */
.services-section { background: var(--dark); }

.services-tabs {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
  background: var(--dark-3);
  padding: 6px;
  border-radius: 50px;
  width: fit-content;
}

.tab-btn {
  padding: 10px 24px;
  border-radius: 50px;
  border: none;
  background: transparent;
  color: var(--text-muted);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-size: 0.9rem;
}

.tab-btn.active {
  background: var(--gradient);
  color: white;
}

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

.service-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: var(--transition);
  cursor: default;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient);
  transform: scaleX(0);
  transition: transform 0.3s;
}

.service-card:hover { transform: translateY(-8px); border-color: rgba(26,109,255,0.3); box-shadow: var(--shadow); }
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 60px; height: 60px;
  background: rgba(26,109,255,0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--blue);
  margin-bottom: 1.2rem;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: var(--gradient);
  color: white;
}

.service-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.service-card p { font-size: 0.88rem; color: var(--text-muted); }

/* ========== PORTFOLIO ========== */
.portfolio-section { background: var(--dark-2); }

.portfolio-filters {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 8px 20px;
  border-radius: 50px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-muted);
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  font-size: 0.88rem;
}

.filter-btn.active, .filter-btn:hover {
  background: var(--gradient);
  color: white;
  border-color: transparent;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.portfolio-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
}

.portfolio-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: rgba(26,109,255,0.3); }

.portfolio-img {
  height: 200px;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: rgba(255,255,255,0.3);
  position: relative;
  overflow: hidden;
}

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

.portfolio-category {
  position: absolute;
  top: 12px; right: 12px;
  background: rgba(0,0,0,0.7);
  color: var(--orange);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
  text-transform: uppercase;
}

.portfolio-body { padding: 1.5rem; }
.portfolio-body h3 { font-size: 1.05rem; margin-bottom: 6px; }
.portfolio-client { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 1rem; }

.portfolio-metrics {
  display: flex;
  gap: 1.5rem;
}

.metric span:first-child {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--blue);
  display: block;
}

.metric span:last-child { font-size: 0.75rem; color: var(--text-muted); }

/* Modal */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-overlay.active { display: flex; }

.modal {
  background: var(--dark-3);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  max-width: 700px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
}

.modal-header {
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal-close {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.3rem;
  cursor: pointer;
  padding: 4px;
  transition: var(--transition);
}

.modal-close:hover { color: var(--white); }

.modal-body { padding: 2rem; }

/* ========== TESTIMONIALS ========== */
.testimonials-section { background: var(--dark); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  position: relative;
  transition: var(--transition);
}

.testimonial-card:hover { transform: translateY(-5px); border-color: rgba(26,109,255,0.3); }

.quote-icon {
  font-size: 3rem;
  color: var(--blue);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 1rem;
}

.testimonial-text {
  color: var(--text-dark);
  font-style: italic;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.testimonial-author { display: flex; align-items: center; gap: 12px; }

.author-avatar {
  width: 48px; height: 48px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: white;
  font-size: 1.1rem;
}

.author-name { font-weight: 600; color: var(--white); font-size: 0.95rem; }
body.light-mode .author-name { color: var(--text-dark); }
.author-role { font-size: 0.8rem; color: var(--text-muted); }

.stars { color: #ffd700; font-size: 0.85rem; margin-bottom: 4px; }

/* ========== FAQ ========== */
.faq-section { background: var(--dark-2); }

.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 1rem; }

.faq-item {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: var(--transition);
}

.faq-question {
  padding: 1.2rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-weight: 600;
  color: var(--white);
  transition: var(--transition);
}

body.light-mode .faq-question { color: var(--text-dark); }
.faq-question:hover { color: var(--blue); }

.faq-icon {
  width: 28px; height: 28px;
  background: rgba(26,109,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--blue);
  transition: var(--transition);
  flex-shrink: 0;
}

.faq-item.active .faq-icon { background: var(--blue); color: white; transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer-inner {
  padding: 0 1.5rem 1.2rem;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.faq-item.active .faq-answer { max-height: 200px; }

/* ========== BRANDS TICKER ========== */
.brands-ticker { padding: 60px 0; background: var(--dark-3); overflow: hidden; }

.ticker-wrap {
  display: flex;
  gap: 3rem;
  animation: ticker 20s linear infinite;
  white-space: nowrap;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  background: var(--dark-4);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-weight: 600;
  color: var(--text-muted);
  font-size: 0.9rem;
  flex-shrink: 0;
}

.ticker-item i { color: var(--blue); }

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ========== CTA ========== */
.cta-section {
  background: linear-gradient(135deg, var(--blue) 0%, var(--orange) 100%);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-section h2 { color: white; font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1rem; position: relative; }
.cta-section p { color: rgba(255,255,255,0.85); font-size: 1.1rem; margin-bottom: 2.5rem; position: relative; }

.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; position: relative; }

.btn-white {
  background: white;
  color: var(--blue);
  font-weight: 700;
}

.btn-white:hover { background: var(--dark); color: white; transform: translateY(-3px); }

.btn-white-outline {
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.6);
}

.btn-white-outline:hover {
  background: rgba(255,255,255,0.2);
  border-color: white;
  color: white;
  transform: translateY(-3px);
}

/* ========== FORMS ========== */
.form-group { margin-bottom: 1.5rem; }

label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
}

input, textarea, select {
  width: 100%;
  padding: 12px 16px;
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: 0.92rem;
  transition: var(--transition);
  outline: none;
}

body.light-mode input,
body.light-mode textarea,
body.light-mode select {
  background: white;
  color: var(--text-dark);
  border-color: #dce6ff;
}

input:focus, textarea:focus, select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(26,109,255,0.15);
}

textarea { resize: vertical; min-height: 120px; }

select option { background: var(--dark-3); }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ========== PAGE HERO ========== */
.page-hero {
  padding: 140px 0 80px;
  background: var(--dark-2);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(ellipse at right, rgba(26,109,255,0.1) 0%, transparent 70%);
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.breadcrumb a { color: var(--blue); }
.breadcrumb i { font-size: 0.65rem; }

/* ========== CARDS ========== */
.card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: var(--transition);
}

.card:hover { border-color: rgba(26,109,255,0.3); box-shadow: var(--shadow); }

/* ========== PRICING ========== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: start;
}

.pricing-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
  text-align: center;
  transition: var(--transition);
  position: relative;
}

.pricing-card.featured {
  border-color: var(--blue);
  transform: scale(1.04);
  box-shadow: var(--shadow);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 16px;
  border-radius: 50px;
  white-space: nowrap;
}

.pricing-plan { font-size: 0.85rem; font-weight: 600; color: var(--text-muted); margin-bottom: 12px; text-transform: uppercase; letter-spacing: 1px; }

.pricing-price {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 4px;
}

body.light-mode .pricing-price { color: var(--text-dark); }

.pricing-price span { font-size: 1rem; font-weight: 500; color: var(--text-muted); }
.pricing-desc { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 2rem; }

.pricing-features { text-align: left; margin-bottom: 2rem; list-style: none; display: flex; flex-direction: column; gap: 12px; }

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-dark);
}

.pricing-features li i { color: var(--blue); font-size: 0.8rem; }
.pricing-features li.disabled { opacity: 0.4; }
.pricing-features li.disabled i { color: var(--text-muted); }

/* ========== FOOTER ========== */
.footer {
  background: var(--dark-2);
  border-top: 1px solid var(--border);
  padding: 80px 0 30px;
}

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

.footer-brand .logo { font-size: 1.6rem; font-weight: 800; margin-bottom: 1rem; display: block; }
.footer-brand p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 1.5rem; }

.social-links { display: flex; gap: 10px; }

.social-link {
  width: 38px; height: 38px;
  background: var(--dark-4);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.88rem;
  transition: var(--transition);
}

.social-link:hover { background: var(--gradient); color: white; border-color: transparent; transform: translateY(-3px); }

/* Social brand colors on hover */
.social-link.instagram:hover  { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%); border-color: transparent; color: white; }
.social-link.facebook:hover   { background: #1877F2; border-color: transparent; color: white; }
.social-link.youtube:hover    { background: #FF0000; border-color: transparent; color: white; }
.social-link.linkedin:hover   { background: #0A66C2; border-color: transparent; color: white; }
.social-link.whatsapp:hover   { background: #25D366; border-color: transparent; color: white; }
.social-link.twitter:hover    { background: #1DA1F2; border-color: transparent; color: white; }

/* Default icon colors (subtle) */
.social-link.instagram i { color: #e1306c; }
.social-link.facebook i  { color: #1877F2; }
.social-link.youtube i   { color: #FF0000; }
.social-link.linkedin i  { color: #0A66C2; }
.social-link.whatsapp i  { color: #25D366; }
.social-link.twitter i   { color: #1DA1F2; }

.footer-col h4 { font-size: 1rem; margin-bottom: 1.2rem; color: var(--white); }
body.light-mode .footer-col h4 { color: var(--text-dark); }

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

.footer-links a {
  color: var(--text-muted);
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.footer-links a:hover { color: var(--blue); transform: translateX(4px); }

.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
  align-items: flex-start;
}

.footer-contact-item i { color: var(--blue); font-size: 0.9rem; margin-top: 3px; }
.footer-contact-item span { color: var(--text-muted); font-size: 0.85rem; }

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

/* Mobile theme toggle (fixed, bottom left) */
.theme-toggle-mobile {
  display: none;
  position: fixed;
  bottom: 100px;
  left: 16px;
  z-index: 998;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--dark-3);
  border: 1px solid var(--border);
  color: var(--text-dark);
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.theme-toggle-mobile:hover {
  background: var(--blue);
  color: white;
  border-color: var(--blue);
}

@media (max-width: 480px) {
  .theme-toggle-mobile { display: flex; }
  .nav-actions .theme-toggle { display: none; }
}

/* ========== SCROLL ANIMATIONS ========== */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ========== ALERTS ========== */
.alert {
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.alert-success { background: rgba(34,197,94,0.15); border: 1px solid rgba(34,197,94,0.3); color: #4ade80; }
.alert-error { background: rgba(239,68,68,0.15); border: 1px solid rgba(239,68,68,0.3); color: #f87171; }

/* ========== ABOUT PAGE ========== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }

.about-visual {
  position: relative;
  height: 500px;
}

.about-visual-main {
  width: 100%;
  height: 100%;
  background: var(--gradient);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
  color: rgba(255,255,255,0.2);
  position: relative;
  overflow: hidden;
}

.about-visual-main::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,109,255,0.8), rgba(255,90,26,0.8));
}

.floating-card {
  position: absolute;
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
  animation: float-card 4s ease-in-out infinite;
}

.floating-card.card-1 { bottom: -20px; left: -30px; animation-delay: 0s; }
.floating-card.card-2 { top: 40px; right: -30px; animation-delay: 2s; }

@keyframes float-card {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.floating-card-icon { font-size: 1.5rem; }
.floating-card-num { font-size: 1.4rem; font-weight: 800; color: var(--blue); line-height: 1; }
.floating-card-label { font-size: 0.75rem; color: var(--text-muted); }

.values-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 2rem; }

.value-item { display: flex; align-items: flex-start; gap: 14px; }
.value-icon { width: 44px; height: 44px; background: rgba(26,109,255,0.1); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--blue); flex-shrink: 0; }

/* ========== TEAM ========== */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

.team-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  transition: var(--transition);
}

.team-card:hover { transform: translateY(-8px); border-color: rgba(26,109,255,0.3); }

.team-avatar {
  width: 80px; height: 80px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: white;
  margin: 0 auto 1rem;
}

.team-name { font-weight: 700; margin-bottom: 4px; }
.team-role { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 1rem; }
.team-social { display: flex; justify-content: center; gap: 8px; }
.team-social a { width: 32px; height: 32px; background: var(--dark-4); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--text-muted); font-size: 0.8rem; }
.team-social a:hover { background: var(--blue); color: white; }

/* ========== CONTACT ========== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 4rem; }

.info-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 1.5rem;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 1rem;
  transition: var(--transition);
}

.info-card:hover { border-color: rgba(26,109,255,0.3); transform: translateX(4px); }

.info-icon { width: 50px; height: 50px; background: rgba(26,109,255,0.1); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; color: var(--blue); font-size: 1.1rem; flex-shrink: 0; }
.info-label { font-size: 0.78rem; color: var(--text-muted); margin-bottom: 2px; }
.info-value { font-weight: 600; color: var(--white); font-size: 0.95rem; }
body.light-mode .info-value { color: var(--text-dark); }

/* ========== PROCESS STEPS ========== */
.process-steps { display: flex; flex-direction: column; gap: 1.5rem; position: relative; }
.process-steps::before { content: ''; position: absolute; left: 24px; top: 50px; bottom: 50px; width: 2px; background: linear-gradient(to bottom, var(--blue), var(--orange)); }

.process-step { display: flex; gap: 20px; align-items: flex-start; }

.step-num {
  width: 48px; height: 48px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: white;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.step-body h4 { margin-bottom: 4px; }
.step-body p { font-size: 0.88rem; color: var(--text-muted); }

/* ========== MAP PLACEHOLDER ========== */
.map-placeholder {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  color: var(--text-muted);
  margin-top: 1.5rem;
}

.map-placeholder i { font-size: 2.5rem; color: var(--blue); }

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
  .pricing-card.featured { transform: scale(1); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .btn-nav { display: none; }
  .login-dropdown { display: none; }

  /* Login dropdown on mobile */
  .login-btn { padding: 8px 12px; font-size: 0.8rem; }
  .login-menu { right: -10px; min-width: 220px; }

  /* Hero mobile */
  .hero h1 { font-size: 2rem; }
  .hero p { font-size: 0.95rem; }
  .hero-btns { flex-direction: column; gap: 0.8rem; }
  .hero-btns .btn { width: 100%; justify-content: center; }
  .hero-stats { gap: 1.5rem; flex-wrap: wrap; }

  /* Section padding */
  section { padding: 60px 0; }
  .container { padding: 0 4%; }

  /* Page hero */
  .page-hero { padding: 110px 0 50px; }

  /* Stats */
  .stats-grid { grid-template-columns: repeat(2, 1fr); }

  /* Services */
  .services-grid { grid-template-columns: 1fr; }
  .services-tabs { flex-wrap: wrap; gap: 6px; }

  /* Portfolio */
  .portfolio-grid { grid-template-columns: 1fr; }
  .portfolio-filters { gap: 8px; }

  /* Testimonials */
  .testimonials-grid { grid-template-columns: 1fr; }

  /* About */
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-visual { height: 250px; }
  .floating-card { display: none; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }

  /* Team */
  .team-grid { grid-template-columns: 1fr 1fr; }

  /* Forms */
  .form-row { grid-template-columns: 1fr; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .values-grid { grid-template-columns: 1fr; }

  /* Pricing */
  .pricing-grid { grid-template-columns: 1fr; }

  /* CTA */
  .cta-btns { flex-direction: column; align-items: center; }
  .cta-btns .btn { width: 100%; max-width: 300px; justify-content: center; }

  /* Section title */
  .section-title { font-size: 1.8rem; }

  .hero h1 { font-size: 2.5rem; }
  .hero-stats { gap: 1.5rem; flex-wrap: wrap; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { height: 300px; }
  .contact-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .values-grid { grid-template-columns: 1fr; }

  section { padding: 70px 0; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 1rem; }
  .hero h1 { font-size: 1.8rem; }
  .stat-number { font-size: 2rem; }
  .section-title { font-size: 1.6rem; }
  .navbar { padding: 0 4%; height: 65px; }
  .nav-logo { font-size: 1.2rem; }
  .nav-logo img { height: 38px; }
  .login-btn { padding: 8px 12px; font-size: 0.8rem; gap: 4px; }
  .section-tag { font-size: 0.72rem; }
  .btn { padding: 12px 22px; font-size: 0.88rem; }

  /* Theme toggle - move to bottom left corner on mobile */
  .theme-toggle {
    position: fixed !important;
    bottom: 100px;
    left: 16px;
    z-index: 998;
    width: 42px;
    height: 42px;
    background: var(--dark-3) !important;
    border: 1px solid var(--border) !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  }

  /* Hide theme toggle from navbar on mobile - show fixed version */
  .nav-actions .theme-toggle { display: none; }

  /* Compact login button on small screens */
  .login-dropdown .login-btn {
    padding: 8px 12px;
    font-size: 0.8rem;
  }
}

/* Utility */
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mt-4 { margin-top: 2rem; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.w-100 { width: 100%; }
