/* ============================================
   SYNERGY LATTICE LIMITED - Main Stylesheet
   www.synergylattice.com
   Responsive | SEO-Ready | HTTPS-Compatible
   ============================================ */

:root {
  --primary: #4A3F8C;
  --primary-rgb: 74, 63, 140;
  --mid-tone: #3D6B9E;
  --mid-tone-rgb: 61, 107, 158;
  --accent: #2D9E8F;
  --accent-rgb: 45, 158, 143;
  --bright: #48C9B0;
  --bright-rgb: 72, 201, 176;
  --text-dark: #2C3E50;
  --text-dark-rgb: 44, 62, 80;
  --text-light: #5a6c7d;
  --bg-white: #FFFFFF;
  --bg-light: #F8F9FB;
  --bg-cream: #F5F7FA;
  --glow-purple: #E8E6F0;
  --glow-teal: #E0F0ED;
  --glow-center: #E0E8F0;
  --border-light: #E2E8F0;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.10);
  --shadow-lg: 0 10px 40px rgba(74,63,140,0.15);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --header-height: 72px;
}

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

html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text-dark); background: var(--bg-white); line-height: 1.7;
  overflow-x: hidden; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
}

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

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

h1, h2, h3, h4, h5, h6 { font-weight: 700; line-height: 1.3; color: var(--text-dark); }
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.5rem); }

p { margin-bottom: 1rem; color: var(--text-light); }

.section-title { text-align: center; margin-bottom: 3rem; }
.section-title h2 { margin-bottom: 0.5rem; }
.section-title .accent-bar {
  width: 60px; height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  margin: 0 auto; border-radius: 2px;
}
.section-title p { max-width: 600px; margin: 1rem auto 0; }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* Header */
.header {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--header-height);
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  z-index: 1000; transition: var(--transition);
}
.header.scrolled { box-shadow: var(--shadow-md); }

.header-inner { display: flex; align-items: center; justify-content: space-between; height: 100%; }

.logo { display: flex; align-items: center; gap: 0.75rem; }
.logo svg { width: 42px; height: 42px; }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-text .synergy { font-size: 1.15rem; font-weight: 700; color: var(--text-dark); letter-spacing: 1px; }
.logo-text .lattice { font-size: 0.75rem; font-weight: 400; color: var(--accent); letter-spacing: 3px; text-transform: uppercase; }

/* Nav */
.nav { display: flex; align-items: center; gap: 2rem; }
.nav-links { display: flex; list-style: none; gap: 0.5rem; }
.nav-links a {
  display: block; padding: 0.5rem 1rem;
  font-size: 0.875rem; font-weight: 600; color: var(--text-dark);
  border-radius: var(--radius-sm); position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 50%;
  width: 0; height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transition: var(--transition); transform: translateX(-50%);
}
.nav-links a:hover::after, .nav-links a.active::after { width: 70%; }
.nav-links a:hover, .nav-links a.active { color: var(--primary); }

.nav-cta {
  display: inline-flex; align-items: center;
  padding: 0.6rem 1.4rem;
  background: linear-gradient(135deg, var(--primary), var(--mid-tone));
  color: #fff; font-size: 0.8rem; font-weight: 700;
  border-radius: 50px; letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(74,63,140,0.3);
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(74,63,140,0.4); color: #fff; }

.menu-toggle {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 0.5rem; background: none; border: none;
}
.menu-toggle span { display: block; width: 24px; height: 2px; background: var(--text-dark); transition: var(--transition); border-radius: 2px; }
.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Hero */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  padding-top: var(--header-height);
  background: linear-gradient(135deg, var(--glow-purple) 0%, var(--glow-center) 50%, var(--glow-teal) 100%);
  overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -50%; right: -20%;
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(74,63,140,0.08) 0%, transparent 70%);
  border-radius: 50%;
}
.hero::after {
  content: ''; position: absolute; bottom: -30%; left: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(45,158,143,0.1) 0%, transparent 70%);
  border-radius: 50%;
}

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

.hero-content h1 {
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-content p { font-size: 1.15rem; margin-bottom: 2rem; max-width: 500px; }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-visual { display: flex; justify-content: center; align-items: center; }
.hero-visual svg { width: 100%; max-width: 450px; height: auto; filter: drop-shadow(0 20px 40px rgba(74,63,140,0.2)); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.9rem 2rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem; font-weight: 700;
  border-radius: 50px; cursor: pointer;
  transition: var(--transition); border: none;
}
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--mid-tone));
  color: #fff; box-shadow: 0 4px 20px rgba(74,63,140,0.3);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(74,63,140,0.4); color: #fff; }
.btn-outline { background: transparent; color: var(--primary); border: 2px solid var(--primary); }
.btn-outline:hover { background: var(--primary); color: #fff; }

/* Sections */
.section { padding: 6rem 0; }
.section-alt { background: var(--bg-light); }

/* Cards */
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; }
.card {
  background: var(--bg-white); border-radius: var(--radius-md);
  padding: 2.5rem; box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: var(--transition); position: relative; overflow: hidden;
}
.card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0); transition: var(--transition);
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.card:hover::before { transform: scaleX(1); }

.card-icon {
  width: 60px; height: 60px; border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--glow-purple), var(--glow-teal));
}
.card-icon svg { width: 28px; height: 28px; color: var(--primary); }
.card h3 { margin-bottom: 0.75rem; }

/* Feature Row */
.feature-row {
  display: grid; grid-template-columns: 45% 1fr;
  gap: 6rem; align-items: center;
}
.feature-content { padding: 2rem 0; }
.feature-img { padding: 1rem; }
.feature-img img { border-radius: var(--radius-lg); }
.feature-row.reverse { direction: rtl; }
.feature-row.reverse > * { direction: ltr; }

.feature-img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.feature-img img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.feature-img:hover img { transform: scale(1.05); }

.feature-content h2 { margin-bottom: 1rem; }
.feature-content p { margin-bottom: 1.5rem; }

.feature-list { list-style: none; }
.feature-list li {
  display: flex; align-items: flex-start; gap: 0.75rem;
  margin-bottom: 0.75rem; color: var(--text-light);
}
.feature-list li::before {
  content: ''; width: 20px; height: 20px; min-width: 20px; margin-top: 2px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%232D9E8F' stroke-width='2.5'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M5 13l4 4L19 7'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* Stats */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center; }
.stat-item {
  padding: 2rem; background: var(--bg-white);
  border-radius: var(--radius-md); box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
}
.stat-number {
  font-size: 2.5rem; font-weight: 700;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.stat-label { font-size: 0.875rem; color: var(--text-light); margin-top: 0.25rem; }

/* CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, var(--primary), var(--mid-tone));
  border-radius: var(--radius-lg); padding: 4rem;
  text-align: center; color: #fff; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; top: -50%; right: -10%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  border-radius: 50%;
}
.cta-banner h2 { color: #fff; margin-bottom: 1rem; position: relative; }
.cta-banner p { color: rgba(255,255,255,0.85); max-width: 600px; margin: 0 auto 2rem; position: relative; }
.cta-banner .btn { background: #fff; color: var(--primary); position: relative; }
.cta-banner .btn:hover { background: var(--bright); color: #fff; }

/* News */
.news-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2rem; }
.news-card {
  background: var(--bg-white); border-radius: var(--radius-md);
  overflow: hidden; box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light); transition: var(--transition);
}
.news-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.news-img { height: 200px; overflow: hidden; }
.news-img img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.news-card:hover .news-img img { transform: scale(1.08); }
.news-body { padding: 1.5rem; }
.news-meta { display: flex; gap: 1rem; font-size: 0.75rem; color: var(--text-light); margin-bottom: 0.75rem; }
.news-meta span { display: flex; align-items: center; gap: 0.3rem; }
.news-body h3 { font-size: 1.1rem; margin-bottom: 0.75rem; line-height: 1.4; }

.news-body p {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.read-more {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 0.5rem;
  cursor: pointer;
  user-select: none;
}

.read-more:hover { gap: 0.6rem; }

.news-card.expanded .news-body p {
  display: block;
  -webkit-line-clamp: unset;
  overflow: visible;
  margin-bottom: 1rem;
}
/* Login */
.login-container {
  max-width: 420px; margin: 0 auto;
  background: var(--bg-white); border-radius: var(--radius-lg);
  padding: 3rem; box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
}
.login-header { text-align: center; margin-bottom: 2rem; }
.login-header svg { width: 64px; height: 64px; margin-bottom: 1rem; }

.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 0.8rem; font-weight: 600; color: var(--text-dark); margin-bottom: 0.4rem; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 0.85rem 1rem;
  border: 1.5px solid var(--border-light); border-radius: var(--radius-sm);
  font-family: 'Montserrat', sans-serif; font-size: 0.9rem;
  color: var(--text-dark); background: var(--bg-white); transition: var(--transition);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none; border-color: var(--mid-tone); box-shadow: 0 0 0 3px rgba(61,107,158,0.15);
}
.form-group input::placeholder { color: #a0aec0; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-submit { width: 100%; padding: 1rem; margin-top: 0.5rem; }
.form-note { text-align: center; font-size: 0.8rem; color: var(--text-light); margin-top: 1rem; }

.alert { padding: 1rem; border-radius: var(--radius-sm); margin-bottom: 1rem; font-size: 0.85rem; display: none; }
.alert.show { display: block; }
.alert-success { background: #E0F0ED; color: #1a6b5e; border: 1px solid #2D9E8F; }
.alert-error { background: #FDE8E8; color: #9B2C2C; border: 1px solid #FC8181; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; }
.contact-info h3 { margin-bottom: 1rem; }
.contact-item { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.5rem; }
.contact-item-icon {
  width: 48px; height: 48px; min-width: 48px; border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--glow-purple), var(--glow-teal));
  display: flex; align-items: center; justify-content: center;
}
.contact-item-icon svg { width: 22px; height: 22px; color: var(--primary); }
.contact-item h4 { font-size: 0.95rem; margin-bottom: 0.25rem; }
.contact-item p { font-size: 0.9rem; margin: 0; }

/* Footer */
.footer { background: var(--text-dark); color: #fff; padding: 4rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand .logo-text .synergy { color: #fff; }
.footer-brand p { color: rgba(255,255,255,0.7); font-size: 0.9rem; margin-top: 1rem; }
.footer-links h4 { color: #fff; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 1.5rem; }
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 0.6rem; }
.footer-links a { color: rgba(255,255,255,0.7); font-size: 0.85rem; }
.footer-links a:hover { color: var(--bright); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1); padding-top: 2rem;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { color: rgba(255,255,255,0.5); font-size: 0.8rem; margin: 0; }

.social-links { display: flex; gap: 0.75rem; }
.social-links a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.social-links a:hover { background: var(--accent); transform: translateY(-3px); }
.social-links svg { width: 16px; height: 16px; color: #fff; }

/* Experience Page */
.exp-hero {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  color: #fff; min-height: 70vh;
}
.exp-hero h1, .exp-hero h2, .exp-hero p { color: #fff; }
.exp-hero .btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--bright));
  box-shadow: 0 4px 20px rgba(45,158,143,0.4);
}

.exp-card {
  background: var(--bg-white); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-md);
  display: grid; grid-template-columns: 1fr 1fr; margin-bottom: 3rem;
}
.exp-card.reverse { direction: rtl; }
.exp-card.reverse > * { direction: ltr; }
.exp-card-img { min-height: 350px; }
.exp-card-img img { width: 100%; height: 100%; object-fit: cover; }
.exp-card-body { padding: 3rem; display: flex; flex-direction: column; justify-content: center; }
.exp-card-body h3 { margin-bottom: 1rem; }
.exp-card-body p { margin-bottom: 1.5rem; }

.tag {
  display: inline-block; padding: 0.3rem 0.8rem;
  background: var(--glow-teal); color: var(--accent);
  font-size: 0.75rem; font-weight: 700; border-radius: 50px;
  margin-bottom: 1rem; text-transform: uppercase; letter-spacing: 0.5px;
}

/* Breadcrumb */
.breadcrumb { background: var(--bg-light); padding: 1.5rem 0; border-bottom: 1px solid var(--border-light); }
.breadcrumb-inner { display: flex; align-items: center; gap: 0.5rem; font-size: 0.85rem; color: var(--text-light); }
.breadcrumb-inner a { color: var(--text-light); }
.breadcrumb-inner a:hover { color: var(--primary); }
.breadcrumb-inner .sep { color: var(--border-light); }

/* Page Header */
.page-header {
  background: linear-gradient(135deg, var(--glow-purple), var(--glow-center));
  padding: 8rem 0 4rem; text-align: center;
}
.page-header h1 { margin-bottom: 0.5rem; }
.page-header p { max-width: 600px; margin: 0 auto; }

/* Animations */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate { opacity: 0; }
.animate.visible { animation: fadeInUp 0.8s ease forwards; }

/* Scroll top */
.scroll-top {
  position: fixed; bottom: 2rem; right: 2rem;
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--primary), var(--mid-tone));
  color: #fff; border: none; border-radius: 50%;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: var(--transition);
  z-index: 999; box-shadow: var(--shadow-md);
}
.scroll-top.visible { opacity: 1; visibility: visible; }
.scroll-top:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

/* Partner Dashboard */
.partner-dashboard { display: none; }
.partner-dashboard.active { display: block; }
.partner-login-form.hidden { display: none; }

.dashboard-card {
  background: var(--bg-white); border-radius: var(--radius-md);
  padding: 2rem; box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light); margin-bottom: 1.5rem;
}
.dashboard-card h3 { margin-bottom: 1rem; font-size: 1.1rem; }
.dashboard-card p { font-size: 0.9rem; }

/* Timeline for About */
.timeline { position: relative; padding-left: 2rem; }
.timeline::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: 2px; background: linear-gradient(180deg, var(--primary), var(--accent));
}
.timeline-item { position: relative; padding-bottom: 2rem; }
.timeline-item::before {
  content: ''; position: absolute; left: -2rem; top: 0.3rem;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--accent); border: 3px solid var(--bg-white);
  box-shadow: 0 0 0 2px var(--accent); transform: translateX(-5px);
}
.timeline-item h4 { font-size: 1rem; margin-bottom: 0.3rem; }
.timeline-item p { font-size: 0.9rem; margin: 0; }

/* ============================================
   RESPONSIVE
   ============================================ */

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

@media (max-width: 768px) {
  :root { --header-height: 64px; }
  .menu-toggle { display: flex; }
  .nav {
    position: fixed; top: var(--header-height); left: 0; right: 0;
    background: rgba(255,255,255,0.98); backdrop-filter: blur(12px);
    flex-direction: column; padding: 2rem; gap: 1rem;
    border-bottom: 1px solid var(--border-light);
    transform: translateY(-150%); opacity: 0;
    transition: var(--transition); box-shadow: var(--shadow-lg);
  }
  .nav.open { transform: translateY(0); opacity: 1; }
  .nav-links { flex-direction: column; width: 100%; gap: 0; }
  .nav-links a { padding: 1rem; border-bottom: 1px solid var(--border-light); }
  .nav-cta { width: 100%; justify-content: center; margin-top: 0.5rem; }

  .hero-grid, .feature-row, .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .hero { min-height: auto; padding: 6rem 0 4rem; }
  .hero-visual { order: -1; }
  .hero-visual svg { max-width: 280px; }
  .feature-row.reverse { direction: ltr; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .stat-item { padding: 1.5rem 1rem; }
  .stat-number { font-size: 1.8rem; }
  .exp-card { grid-template-columns: 1fr; }
  .exp-card-img { min-height: 220px; }
  .exp-card-body { padding: 2rem; }
  .exp-card.reverse { direction: ltr; }
  .cta-banner { padding: 2.5rem 1.5rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .login-container { padding: 2rem 1.5rem; }
  .section { padding: 4rem 0; }
  .page-header { padding: 6rem 0 3rem; }
  .timeline { padding-left: 1.5rem; }
  .timeline-item::before { left: -1.5rem; }
}

@media (max-width: 480px) {
  .hero-content h1 { font-size: 1.8rem; }
  .hero-btns { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .stats-grid { grid-template-columns: 1fr; }
  .card-grid { grid-template-columns: 1fr; }
}

@media print {
  .header, .footer, .scroll-top, .hero-visual, .cta-banner { display: none; }
  body { color: #000; }
  a { color: #000; text-decoration: underline; }
}

/* WhatsApp Button */
.whatsapp-link {
  display: inline-flex; align-items: center; gap: 0.5rem;
  color: #25D366; font-weight: 600; font-size: 0.9rem;
}
.whatsapp-link:hover { color: #128C7E; }
.whatsapp-btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: #25D366; color: #fff;
  padding: 0.6rem 1.2rem; border-radius: 50px;
  font-weight: 700; font-size: 0.85rem;
  box-shadow: 0 4px 15px rgba(37,211,102,0.3);
  transition: var(--transition);
}
.whatsapp-btn:hover { background: #128C7E; color: #fff; transform: translateY(-2px); }


