/* ========================================
   EzAttendancePro - Enterprise SaaS Platform
   style.css - Main Stylesheet
   ======================================== */

:root {
  --primary: #2563EB;
  --secondary: #4F46E5;
  --accent: #10B981;
  --dark: #0F172A;
  --bg: #F8FAFC;
  --text: #334155;
  --text-light: #64748B;
  --white: #FFFFFF;
  --border: #E2E8F0;
  --shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
  --shadow-lg: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
  --shadow-xl: 0 25px 50px -12px rgba(0,0,0,0.25);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all 0.3s ease;
}

[data-theme="dark"] {
  --bg: #0F172A;
  --dark: #F8FAFC;
  --text: #CBD5E1;
  --text-light: #94A3B8;
  --white: #1E293B;
  --border: #334155;
  --shadow: 0 4px 6px -1px rgba(0,0,0,0.3);
  --shadow-lg: 0 20px 25px -5px rgba(0,0,0,0.3);
}

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

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

h1, h2, h3, h4, h5, h6 {
  color: var(--dark);
  font-weight: 700;
  line-height: 1.3;
}

a { text-decoration: none; color: var(--primary); transition: var(--transition); }
a:hover { color: var(--secondary); }

img { max-width: 100%; height: auto; }

.section-padding { padding: 100px 0; }

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  text-align: center;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  text-align: center;
  max-width: 650px;
  margin: 0 auto 3rem;
}

.badge-label {
  display: inline-block;
  background: linear-gradient(135deg, rgba(37,99,235,0.1), rgba(79,70,229,0.1));
  color: var(--primary);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

/* Buttons */
.btn-primary-custom {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 600;
  border: none;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary-custom:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(37,99,235,0.3);
  color: #fff;
}

.btn-outline-custom {
  border: 2px solid var(--primary);
  color: var(--primary);
  padding: 12px 30px;
  border-radius: 8px;
  font-weight: 600;
  background: transparent;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-outline-custom:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}

.btn-accent {
  background: var(--accent);
  color: #fff;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 600;
  border: none;
  transition: var(--transition);
}

.btn-accent:hover {
  background: #059669;
  transform: translateY(-2px);
  color: #fff;
}

/* ========================================
   HEADER / NAVIGATION
   ======================================== */
.navbar-main {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  padding: 12px 0;
  transition: var(--transition);
  z-index: 1050;
}

[data-theme="dark"] .navbar-main {
  background: rgba(15,23,42,0.95);
}

.navbar-main.scrolled {
  box-shadow: var(--shadow);
  padding: 8px 0;
}

.navbar-brand {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--primary) !important;
}

.navbar-brand span { color: var(--secondary); }

.nav-link {
  color: var(--text) !important;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 8px 16px !important;
  transition: var(--transition);
}

.nav-link:hover { color: var(--primary) !important; }

/* Mega Menu */
.mega-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 30px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 1000;
}

.nav-item:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mega-menu-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px;
  border-radius: 8px;
  transition: var(--transition);
}

.mega-menu-item:hover { background: var(--bg); }

.mega-menu-item i {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(37,99,235,0.1), rgba(79,70,229,0.1));
  color: var(--primary);
  border-radius: 8px;
  font-size: 1.1rem;
}

.mega-menu-item h6 { font-size: 0.9rem; margin-bottom: 2px; }
.mega-menu-item p { font-size: 0.8rem; color: var(--text-light); margin: 0; }

/* ========================================
   HERO SECTION
   ======================================== */
.hero-section {
  padding: 140px 0 100px;
  background: linear-gradient(135deg, #f0f4ff 0%, #e8f4f8 50%, #f0fdf4 100%);
  position: relative;
  overflow: hidden;
}

[data-theme="dark"] .hero-section {
  background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(37,99,235,0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-title {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

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

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  max-width: 540px;
}

/* Dashboard Mockup */
.dashboard-mockup {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  padding: 24px;
  border: 1px solid var(--border);
}

.dashboard-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.dashboard-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.dot-red { background: #EF4444; }
.dot-yellow { background: #F59E0B; }
.dot-green { background: #10B981; }

.widget-card {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 16px;
  margin-bottom: 12px;
  border: 1px solid var(--border);
}

.widget-card h6 { font-size: 0.8rem; color: var(--text-light); margin-bottom: 4px; }
.widget-card .value { font-size: 1.5rem; font-weight: 700; color: var(--dark); }
.widget-card .change { font-size: 0.75rem; color: var(--accent); }

.chart-placeholder {
  height: 120px;
  background: linear-gradient(135deg, rgba(37,99,235,0.05), rgba(16,185,129,0.05));
  border-radius: 8px;
  display: flex;
  align-items: flex-end;
  justify-content: space-around;
  padding: 12px;
}

.chart-bar {
  width: 20px;
  background: linear-gradient(to top, var(--primary), var(--accent));
  border-radius: 4px 4px 0 0;
  animation: barGrow 1.5s ease-out forwards;
}

@keyframes barGrow {
  from { height: 0; }
}

/* ========================================
   STATS SECTION
   ======================================== */
.stats-section {
  padding: 30px 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stat-item {
  text-align: center;
  padding: 20px;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-top: 4px;
}

/* ========================================
   PRODUCT CARDS
   ======================================== */
.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  transition: var(--transition);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transition: var(--transition);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

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

.product-card-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(37,99,235,0.1), rgba(79,70,229,0.1));
  color: var(--primary);
  border-radius: var(--radius);
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.product-card h5 { font-size: 1.1rem; margin-bottom: 8px; }
.product-card p { font-size: 0.9rem; color: var(--text-light); margin-bottom: 16px; }

.product-card .learn-more {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.product-card .learn-more:hover { gap: 8px; }

/* ========================================
   FEATURE SECTIONS
   ======================================== */
.feature-section { position: relative; }

.feature-list { list-style: none; padding: 0; }

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  font-size: 0.95rem;
}

.feature-list li i {
  color: var(--accent);
  font-size: 1rem;
  margin-top: 4px;
  flex-shrink: 0;
}

.feature-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.feature-image-wrapper img {
  width: 100%;
  border-radius: var(--radius-lg);
}

/* ========================================
   WHY SECTION
   ======================================== */
.why-card {
  text-align: center;
  padding: 32px 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
  height: 100%;
}

.why-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.why-card i {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 16px;
}

.why-card h6 { font-size: 1rem; margin-bottom: 8px; }
.why-card p { font-size: 0.85rem; color: var(--text-light); margin: 0; }

/* ========================================
   INDUSTRY CARDS
   ======================================== */
.industry-card {
  text-align: center;
  padding: 24px 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
}

.industry-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: var(--primary);
}

.industry-card i {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 12px;
}

.industry-card h6 { font-size: 0.95rem; }

/* ========================================
   TESTIMONIALS
   ======================================== */
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  margin: 10px;
}

.testimonial-card .stars { color: #F59E0B; margin-bottom: 12px; }

.testimonial-card .quote {
  font-size: 1rem;
  font-style: italic;
  color: var(--text);
  margin-bottom: 20px;
  line-height: 1.8;
}

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

.testimonial-author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--border);
}

.testimonial-author h6 { font-size: 0.9rem; margin-bottom: 0; }
.testimonial-author small { color: var(--text-light); font-size: 0.8rem; }

/* ========================================
   PRICING
   ======================================== */
.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 3rem;
}

.pricing-toggle .form-check-input { width: 50px; height: 26px; }
.pricing-toggle .form-check-input:checked { background-color: var(--primary); border-color: var(--primary); }

.pricing-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  transition: var(--transition);
  height: 100%;
  position: relative;
}

.pricing-card.popular {
  border-color: var(--primary);
  transform: scale(1.05);
}

.pricing-card.popular::before {
  content: 'Most Popular';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  padding: 4px 20px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.pricing-card.popular:hover { transform: scale(1.05) translateY(-5px); }

.pricing-card h4 { font-size: 1.3rem; margin-bottom: 8px; }

.pricing-amount {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary);
  margin: 20px 0;
}

.pricing-amount span { font-size: 1rem; font-weight: 400; color: var(--text-light); }

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 24px 0;
  text-align: left;
}

.pricing-features li {
  padding: 8px 0;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pricing-features li i { color: var(--accent); }

/* ========================================
   FAQ
   ======================================== */
.faq-section .accordion-item {
  border: 1px solid var(--border);
  border-radius: var(--radius) !important;
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-section .accordion-button {
  font-weight: 600;
  font-size: 1rem;
  padding: 20px 24px;
  background: var(--white);
  color: var(--dark);
}

.faq-section .accordion-button:not(.collapsed) {
  background: linear-gradient(135deg, rgba(37,99,235,0.05), rgba(79,70,229,0.05));
  color: var(--primary);
}

.faq-section .accordion-button:focus { box-shadow: none; }
.faq-section .accordion-body { padding: 0 24px 20px; color: var(--text-light); }

/* ========================================
   LEAD FORM
   ======================================== */
.lead-section {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.lead-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}

.lead-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-xl);
}

.lead-form .form-control {
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.95rem;
}

.lead-form .form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: var(--dark);
  color: #94A3B8;
  padding: 60px 0 0;
}
.footer-heading {
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

[data-theme="dark"] .footer { background: #020617; }

.footer h5 { color: #fff; font-size: 1.1rem; margin-bottom: 20px; }


.footer-links { list-style: none; padding: 0; }

.footer-links li { margin-bottom: 10px; }

.footer-links a {
  color: #94A3B8;
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-links a:hover { color: #fff; padding-left: 4px; }

.footer-bottom {
  border-top: 1px solid #1E293B;
  padding: 24px 0;
  margin-top: 48px;
}

.social-links a {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #1E293B;
  color: #94A3B8;
  border-radius: 8px;
  margin-right: 8px;
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--primary);
  color: #fff;
}

.newsletter-form .form-control {
  background: #1E293B;
  border: 1px solid #334155;
  color: #fff;
  border-radius: 8px 0 0 8px;
  padding: 12px 16px;
}

.newsletter-form .btn {
  border-radius: 0 8px 8px 0;
  background: var(--primary);
  color: #fff;
  padding: 12px 24px;
  border: none;
}

/* ========================================
   FLOATING ELEMENTS
   ======================================== */
.floating-demo {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: 0 8px 25px rgba(37,99,235,0.4);
  cursor: pointer;
  transition: var(--transition);
  animation: pulse 2s infinite;
}

.floating-demo:hover { transform: scale(1.1); }

@keyframes pulse {
  0%, 100% { box-shadow: 0 8px 25px rgba(37,99,235,0.4); }
  50% { box-shadow: 0 8px 40px rgba(37,99,235,0.6); }
}

.floating-chat {
  position: fixed;
  bottom: 100px;
  right: 30px;
  z-index: 998;
  background: var(--accent);
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 8px 25px rgba(16,185,129,0.4);
  cursor: pointer;
  transition: var(--transition);
}

.floating-chat:hover { transform: scale(1.1); }

/* Theme Toggle */
.theme-toggle {
  background: none;
  border: 2px solid var(--border);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  color: var(--text);
}

.theme-toggle:hover { border-color: var(--primary); color: var(--primary); }

/* ========================================
   PAGE HERO (Internal Pages)
   ======================================== */
.page-hero {
  padding: 160px 0 80px;
  background: linear-gradient(135deg, #0F172A, #1E293B);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 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.03'%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");
}

.page-hero h1 {
  color: #fff;
  font-size: 2.8rem;
  margin-bottom: 1rem;
}

.page-hero p { color: #94A3B8; font-size: 1.1rem; }

.breadcrumb-custom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.breadcrumb-custom a { color: #94A3B8; font-size: 0.9rem; }
.breadcrumb-custom span { color: var(--primary); font-size: 0.9rem; }

/* ========================================
   TIMELINE
   ======================================== */
.timeline {
  position: relative;
  padding: 20px 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border);
  transform: translateX(-50%);
}

.timeline-item {
  display: flex;
  justify-content: flex-end;
  padding-right: 50%;
  position: relative;
  margin-bottom: 40px;
  padding-left: 30px;
}

.timeline-item:nth-child(even) {
  justify-content: flex-start;
  padding-left: 50%;
  padding-right: 30px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 20px;
  width: 16px;
  height: 16px;
  background: var(--primary);
  border-radius: 50%;
  transform: translateX(-50%);
  border: 3px solid var(--bg);
}

.timeline-content {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  max-width: 400px;
}

.timeline-content h5 { font-size: 1rem; color: var(--primary); margin-bottom: 4px; }
.timeline-content p { font-size: 0.9rem; color: var(--text-light); margin: 0; }

/* ========================================
   PRICING CALCULATOR
   ======================================== */
.calculator-section {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.range-slider {
  width: 100%;
  -webkit-appearance: none;
  height: 8px;
  background: var(--border);
  border-radius: 4px;
  outline: none;
}

.range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 24px;
  height: 24px;
  background: var(--primary);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(37,99,235,0.3);
}

.calc-result {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  text-align: center;
}

/* ========================================
   COMPARISON TABLE
   ======================================== */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
}

.comparison-table th, .comparison-table td {
  padding: 16px 20px;
  text-align: center;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}

.comparison-table th {
  background: var(--bg);
  font-weight: 600;
  color: var(--dark);
}

.comparison-table td:first-child { text-align: left; font-weight: 500; }
.comparison-table .fa-check { color: var(--accent); }
.comparison-table .fa-times { color: #EF4444; }

/* ========================================
   WORKFLOW SECTION
   ======================================== */
.workflow-step {
  text-align: center;
  padding: 20px;
  position: relative;
}

.workflow-step::after {
  content: '→';
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--primary);
}

.workflow-step:last-child::after { display: none; }

.workflow-step .step-number {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  border-radius: 50%;
  font-weight: 700;
  margin: 0 auto 12px;
}

/* ========================================
   ABOUT PAGE
   ======================================== */
.team-card {
  text-align: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 20px;
  transition: var(--transition);
}

.team-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }

.team-card .avatar {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
}

.team-card h5 { font-size: 1.1rem; margin-bottom: 4px; }
.team-card p { font-size: 0.85rem; color: var(--text-light); }

/* ========================================
   CONTACT PAGE
   ======================================== */
.contact-info-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
  transition: var(--transition);
  height: 100%;
}

.contact-info-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }

.contact-info-card i {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(37,99,235,0.1), rgba(79,70,229,0.1));
  color: var(--primary);
  border-radius: 50%;
  font-size: 1.3rem;
  margin: 0 auto 16px;
}

.map-placeholder {
  height: 400px;
  background: var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
}

/* Scroll to top */
.scroll-top {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 45px;
  height: 45px;
  background: var(--dark);
  color: #fff;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 999;
  transition: var(--transition);
}

.scroll-top.show { display: flex; }
.scroll-top:hover { background: var(--primary); }
