/* ============================================================
   SERVICE_1 – TAX FILING & COMPLIANCE – FULLY FIXED
   ============================================================ */

:root {
  --primary: #f58217;
  --text: #1a1a1a;
  --bg: #fafafa;
  --card: #ffffff;
  --radius: 1.4rem;
  --gap: 3rem;
  --transition: 0.4s ease;
}

.dark {
  --bg: #0a0a0a;
  --card: #111;
  --text: #e0e0e0;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body { 
  font-family: 'Inter', sans-serif; 
  background: var(--bg); 
  color: var(--text); 
  line-height: 1.7; 
  overflow-x: hidden;
}
.container { 
  max-width: 1100px; 
  margin: 0 auto; 
  padding: 0 1.5rem; 
}
section { padding: var(--gap) 0; }

/* ============================================================
   HEADER & NAV – 100% IDENTICAL TO person.css – NO BS VARIABLES
   ============================================================ */
.header {
  position: fixed;
  top: 0; left: 0; width: 100%;
  height: 70px;  /* EXACT SAME AS PERSON.CSS */
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  z-index: 1000;
  box-shadow: 0 1px 12px rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  padding: 0 1.5rem;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
}

/* LOGO – SAME AS PERSON.CSS */
.nav__logo {
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 1.5rem;
  color: inherit;
  text-decoration: none;
}

.nav__logo .logo-img {
  height: 170px;
  margin-bottom: -7px;
  width: auto;
  display: block;
  transition: transform 0.3s ease;
}

.nav__logo:hover .logo-img { transform: scale(1.05); }

/* BACK BUTTON – EXACT SAME AS PERSON.CSS */
.back-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.55rem 1.1rem;
  background: var(--card);
  color: var(--text);
  border: 2px solid rgba(0, 0, 0, 0.15);
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.94rem;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(8px);
  height: 40px;
  line-height: 1;
  white-space: nowrap;
  transition: border-color 0.4s ease, background 0.4s ease;
}

.back-btn i {
  font-size: 1.1rem;
  line-height: 1;
  color: var(--primary);
}

.back-btn:hover {
  border-color: var(--primary);
  background: rgba(245, 130, 23, 0.1);
}

.dark .back-btn {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(17, 17, 17, 0.8);
  color: #e0e0e0;
}
.dark .back-btn:hover {
  background: rgba(245, 130, 23, 0.15);
  border-color: var(--primary);
}

/* MOBILE RESPONSIVE – SAME AS PERSON.CSS */
@media (max-width: 768px) {
  .header { height: 64px; padding: 0 1rem; }
  .back-btn { height: 36px; font-size: 0.9rem; padding: 0.5rem 1rem; }
  .nav__logo .logo-img { height: 150px; }
}

/* LOGO SIZE OVERRIDE – MAKES IT IDENTICAL TO PERSON.CSS */
.nav__logo img,
.header .logo-img,
#nav-logo {
  height: 170px !important;
  width: auto !important;
  padding: 0 !important;
  margin: 0 !important;
  display: block !important;
}
@media (max-width: 768px) {
  .nav__logo img,
  .header .logo-img,
  #nav-logo {
    height: 150px !important;
  }
}

/* DARK MODE HEADER */
.dark .header {
  background: #111;
}

/* LOGO IMAGE STYLES – EXACT SAME AS person.css */
.nav__logo {
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 1.5rem;
  color: inherit;
  text-decoration: none;
}

.nav__logo .logo-img {
  height: 170px;
  margin-bottom: -7px;
  width: auto;
  display: block;
  transition: transform 0.3s ease;
}

.nav__logo:hover .logo-img {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .header { height: 64px; padding: 0 1rem; }
  .back-btn { height: 36px; font-size: 0.9rem; padding: 0.5rem 1rem; }
  .nav__logo .logo-img { height: 150px; }
}

/* ============================================================
   HERO
   ============================================================ */
.service-hero {
  padding-top: 7rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}
.dark .service-hero { background: #0a0a0a; }

.hero-visual .icon-box i { font-family: 'boxicons'; }

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
@media (max-width: 992px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-visual { order: -1; }
  
}

.hero-content h1 {
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--primary);
}
.subtitle {
  font-size: 1.3rem;
  font-weight: 600;
  margin: 1rem 0;
  color: #444;
}
.dark .subtitle { color: #ccc; }
.hero-content p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 1.5rem;
}

.stats-mini {
  display: flex;
  gap: 2rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}
@media (max-width: 992px) {
    .stats-mini { justify-content: center; } 
    
    .hero-content h1 {
        font-size: 2.5rem;
      }
}
.stat { text-align: center; }
.num { 
  font-size: 2rem; 
  font-weight: 700; 
  color: var(--primary); 
  display: block; 

}
.label { 
  font-size: 0.9rem; 
  opacity: 0.8; 
  display: block;
}

.hero-visual {
  display: flex;
  justify-content: center;
}
.icon-box {
  width: 180px;
  height: 180px;
  background: var(--card);
  border-radius: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4.5rem;
  color: var(--primary);
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

/* ============================================================
   FEATURES
   ============================================================ */
.features h2, .process h2, .faq h2 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 2.5rem;
  font-weight: 600; 
  color: var(--text);
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.8rem;
}
.card {
  background: var(--card);
  padding: 2rem;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: 0 8px 25px rgba(0,0,0,.08);
  transition: var(--transition);
}
.card i {
  font-size: 2.2rem;
  color: var(--primary);
  margin-bottom: 1rem;
}
.card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.8rem;
  font-weight: 600;
}

/* ============================================================
   PROCESS – FULLY UPGRADED TIMELINE
   ============================================================ */

.process-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: #555;
  max-width: 700px;
  margin: 0 auto 3rem;
  opacity: 0.9;
}
.dark .process-subtitle { color: #aaa; }

.timeline-container {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 0;
}

.timeline-container::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0; left: 50%;
  width: 4px;
  background: linear-gradient(to bottom, transparent, var(--primary), transparent);
  transform: translateX(-50%);
  border-radius: 2px;
  opacity: 0.3;
}
@media (max-width: 768px) {
  .timeline-container::before { left: 40px; }
}

.timeline-item {
  display: flex;
  align-items: center;
  margin-bottom: 3rem;
  position: relative;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.6s ease forwards;
}
.timeline-item:nth-child(1) { animation-delay: 0.1s; }
.timeline-item:nth-child(2) { animation-delay: 0.2s; }
.timeline-item:nth-child(3) { animation-delay: 0.3s; }
.timeline-item:nth-child(4) { animation-delay: 0.4s; }

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

.timeline-icon {
  width: 70px; height: 70px;
  background: var(--card);
  border: 3px solid var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--primary);
  flex-shrink: 0;
  z-index: 1;
  box-shadow: 0 8px 25px rgba(245,130,23,0.2);
  transition: all 0.4s ease;
}

.timeline-item:nth-child(odd) { flex-direction: row; }
.timeline-item:nth-child(even) { flex-direction: row-reverse; }

@media (max-width: 768px) {
  .timeline-item { flex-direction: row !important; margin-left: 0; }
  .timeline-icon { margin-right: 1.5rem; }
}

.timeline-content {
  flex: 1; 
  background: var(--card); 
  padding: 2.5rem; /* More padding like Pic 2 */
  border-radius: var(--radius); 
  margin: 0 3rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  position: relative;
  
  /* ✅ FORCE LEFT ALIGNMENT */
  text-align: left !important; 
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.dark .timeline-content { 
  background: #1a1a1a; 
  box-shadow: 0 10px 30px rgba(0,0,0,0.3); 
}

.timeline-year {
  display: inline-block; 
  background: var(--primary); 
  color: #fff;
  padding: 0.5rem 1.2rem; 
  border-radius: 50px; 
  font-weight: 700; 
  font-size: 0.95rem;
  margin-bottom: 1.2rem;
  box-shadow: 0 4px 15px rgba(245,130,23,0.4);
}

.timeline-content h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text);
  font-weight: 700;
}

/* Make description text readable */
.timeline-content p {
  font-size: 1.05rem;
  margin-bottom: 0;
  color: #555;
  opacity: 1;
  line-height: 1.8;
}
.dark .timeline-content p { color: #ccc; }

.feature-list {
  list-style: none;
  font-size: 0.95rem;
  color: #444;
}
.dark .feature-list { color: #bbb; }

.feature-list li {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: 0.4rem;
}
.feature-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
}

/* Hover Animation */
.timeline-icon:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 35px rgba(245,130,23,0.4);
}

/* Guarantee Badge */
.process-guarantee {
  text-align: center;
  margin-top: 3rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(245,130,23,0.08), rgba(245,130,23,0.04));
  border: 2px dashed var(--primary);
  border-radius: 1.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.dark .process-guarantee {
  background: rgba(245,130,23,0.12);
  border-color: rgba(245,130,23,0.4);
}

.process-guarantee i {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}
.process-guarantee p {
  font-size: 1.1rem;
  font-weight: 600;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-grid {
  max-width: 800px;
  margin: 0 auto;
}
details {
  background: var(--card);
  margin-bottom: 1rem;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.08);
}
summary {
  padding: 1.2rem 1.5rem;
  font-weight: 600;
  cursor: pointer;
  background: rgba(245,130,23,0.05);
  transition: background 0.3s;
}
summary:hover { background: rgba(245,130,23,0.1); }
details[open] summary { 
  background: var(--primary); 
  color: #fff; 
}
details p {
  padding: 1.2rem 1.5rem;
  margin: 0;
  color: #555;
}
.dark details p { color: #ccc; }

/* ============================================================
   CTA & BUTTONS
   ============================================================ */
.service-cta {
  text-align: center;
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--primary), #d35400);
  color: #fff;
}
.service-cta h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.service-cta p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

/* BUTTONS – FULLY FIXED */
.btn-primary {
  display: inline-block;
  padding: 1.1rem 2.8rem;
  background: var(--primary);
  color: #fff;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(245,130,23,0.3);
  transition: var(--transition);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(245,130,23,0.4);
}
.btn-primary.large {
  padding: 1.3rem 3rem;
  font-size: 1.1rem;
}

/* ============================================================
   FIX: ORANGE BORDER OUTLINE IN DARK MODE – POP!
   ============================================================ */

/* Base glow-hover – already good */
.glow-hover {
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
}

/* HOVER – LIGHT MODE (already good) */
.glow-hover:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(245, 130, 23, .25);
  border: 2px solid var(--primary);
  background: rgba(245, 130, 23, 0.08);
}

/* DARK MODE – STRONGER ORANGE BORDER + GLOW */
.dark .glow-hover:hover {
  border: 2px solid var(--primary);
  box-shadow: 
    0 20px 40px rgba(245, 130, 23, 0.3),
    0 0 20px rgba(245, 130, 23, 0.4);
  background: rgba(245, 130, 23, 0.12);
  transform: translateY(-12px);
}

/* Optional: Add inner glow ring in dark mode */
.dark .glow-hover::before {
  content: '';
  position: absolute;
  inset: -2px;
  border: 2px solid var(--primary);
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: -1;
}

.dark .glow-hover:hover::before {
  opacity: 0.6;
  animation: pulse-border 2s infinite;
}

@keyframes pulse-border {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 0.3; }
}

/* Dark mode: same rules */
.dark .glow-hover i,
.dark .glow-hover .bx,
.dark .card i,
.dark .icon-box i,
.dark .back-btn i {
  color: var(--primary) !important;
}

/* ============================================================
   DARK MODE
   ============================================================ */
.dark .header { background: #111; }
.dark .nav__menu { background: #111; }
.dark .card, .dark details { background: #111; border-color: #333; }

/* ============================================================
   DARK MODE TOGGLE – ANIMATED & GORGEOUS
   ============================================================ */

.theme-toggle {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--card);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.6rem;
  color: var(--text);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  z-index: 999;
  overflow: hidden;
  border: 3px solid transparent;
}

.theme-toggle::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(245, 130, 23, 0.15) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.theme-toggle:hover::before {
  opacity: 1;
}

.theme-toggle i {
  position: absolute;
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  font-size: 1.6rem;
}

.theme-toggle .bx-moon {
  opacity: 1;
  transform: translateY(0) rotate(0deg);
  color: #ffd43b;
}

.theme-toggle .bx-sun {
  opacity: 0;
  transform: translateY(20px) rotate(180deg);
  color: #ff6b35;
}

.theme-toggle.active .bx-moon {
  opacity: 0;
  transform: translateY(-20px) rotate(-180deg);
}

.theme-toggle.active .bx-sun {
  opacity: 1;
  transform: translateY(0) rotate(0deg);
}

/* PULSE RING ON CLICK */
.theme-toggle:active {
  transform: scale(0.92);
}

.theme-toggle::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid var(--primary);
  opacity: 0;
  transform: scale(0.8);
  animation: pulse-ring 1.5s infinite;
}

@keyframes pulse-ring {
  0% {
    transform: scale(0.8);
    opacity: 0.6;
  }
  70% {
    transform: scale(1.4);
    opacity: 0;
  }
  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

/* DARK MODE STYLES */
.dark .theme-toggle {
  background: #111;
  border-color: rgba(255, 255, 255, 0.1);
}

.theme-toggle:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(245, 130, 23, 0.3);
}

.dark .theme-toggle:hover {
  box-shadow: 0 12px 40px rgba(255, 255, 255, 0.1);
}

/* === LOGO HEADER === */
.nav__logo {
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 1.5rem;
  color: inherit;
  text-decoration: none;
}

.nav__logo .logo-img {
  height: 170px;
  margin-bottom: -7px;         /* Adjust size as needed */
  width: auto;
  display: block;
  transition: transform 0.3s ease;
}

.nav__logo:hover .logo-img {
  transform: scale(1.05);
}

/* Responsive: smaller logo on mobile */
@media (max-width: 768px) {
  .nav__logo .logo-img {
    height: 32px;
  }
}

/* 3. FOOTER LOGO – IDENTICAL size everywhere */
.footer-logo-img,
.footer__logo img,
#footer-logo,
footer img {
  height: 160px !important;
  width: auto !important;
  padding: 0 !important;
  margin: 2rem auto 1.5rem auto !important;
  display: block;
}
@media (max-width: 768px) {
  .footer-logo-img,
  .footer__logo img,
  #footer-logo,
  footer img {
    height: 130px !important;
  }
}

/* Header logo – IDENTICAL size everywhere */
.nav__logo img,
.header .logo-img,
#nav-logo,
nav img.logo-img {
  height: 110px !important;
  width: auto !important;
  padding: 0 !important;
  margin: 0 !important;
  display: block;
}
@media (max-width: 768px) {
  .nav__logo img,
  .header .logo-img,
  #nav-logo,
  nav img.logo-img {
    height: 80px !important;
  }
}

/* Footer general styling – same look everywhere */
.footer {
  padding: 3rem 1.5rem 2rem !important;
  text-align: center;
  background: var(--card,#ffffff);
  margin-top: auto;
}

/* ============================================================
   CLIENT SUCCESS STORIES – BEAUTIFUL QUOTE CARDS (DARK MODE PERFECT)
   ============================================================ */

.success {
  padding: var(--gap) 0;
}
.dark .success {
  background: #0a0a0a;
  color: #e0e0e0;
}

.success h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 3rem;
  font-weight: 600;
  color: var(--text);
}
.dark .success h2 { color: #ffffff; }

.success-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.success-card {
  background: var(--card);
  padding: 2.2rem;
  border-radius: var(--radius);
  position: relative;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: var(--transition);
  border: 1px solid rgba(245,130,23,0.1);
}
.dark .success-card {
  background: #111;
  border-color: rgba(245,130,23,0.2);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.quote-mark {
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 6rem;
  font-family: Georgia, serif;
  color: var(--primary);
  opacity: 0.2;
  line-height: 1;
  pointer-events: none;
}
.dark .quote-mark { opacity: 0.15; }

.quote {
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.7;
  margin: 1.5rem 0 1.8rem;
  color: var(--text);
  position: relative;
  z-index: 1;
}
.dark .quote { color: #e0e0e0; }

.client {
  margin-top: 1rem;
  font-size: 0.95rem;
}
.client strong {
  color: var(--primary);
  font-size: 1.05rem;
}
.client span {
  color: #888;
  font-size: 0.9rem;
}
.dark .client span { color: #aaa; }

/* Glow hover effect */
.success-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(245,130,23,0.25);
  border-color: var(--primary);
}
.dark .success-card:hover {
  box-shadow: 
    0 20px 40px rgba(245,130,23,0.3),
    0 0 20px rgba(245,130,23,0.3);
  border-color: var(--primary);
}

/* ============================================================
   GUARANTEE – MINIMAL & POWERFUL
   ============================================================ */
.guarantee {
  padding: 3.5rem 0;
}
.dark .guarantee { background: #0a0a0a; color: #e0e0e0; }

.guarantee-box {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
  padding: 1.8rem 2rem;
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  border: 1px solid rgba(245,130,23,0.15);
}
.dark .guarantee-box {
  background: #111;
  border-color: rgba(245,130,23,0.25);
  box-shadow: 0 8px 25px rgba(0,0,0,0.5);
}

.guarantee-box i {
  font-size: 2.2rem;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.guarantee-content h3 {
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
  color: var(--text);
}
.dark .guarantee-content h3 { color: #ffffff; }

.guarantee-content p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #bbb;
}
.dark .guarantee-content p { color: #ccc; }

.guarantee-content em {
  font-style: italic;
  color: #fff;
}
.guarantee-content strong { color: var(--primary); font-weight: 700; }

@media (max-width: 768px) {
  .guarantee-box { flex-direction: column; text-align: center; gap: 1rem; }
  .guarantee-box i { margin: 0 auto; }
}

/* FINAL FIX – WHY COMPANIES TRUST US – 5 LINES AND IT'S PERFECT */
.why-choose h2 {
  text-align: center !important;
  font-size: 2.2rem !important;
  margin-bottom: 3.5rem !important;
  font-weight: 700 !important;
}

/* Make the cards bigger and match "Everything You Need" exactly */
.why-choose .card {
  padding: 2.4rem 2rem !important;
  text-align: center !important;
}

/* Bigger icons like the other sections */
.why-choose .card i {
  font-size: 3.2rem !important;
  margin-bottom: 1.4rem !important;
}

/* FOOTER */
.footer {
  padding: 3rem 1.5rem 2rem !important;
  text-align: center;
  background: var(--bg);
  margin-top: auto;
}
.footer__title { font-size: 2rem; margin-bottom: 1rem; }
.footer__social {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.footer__icon {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: var(--text);
  font-size: 1.5rem;
  text-decoration: none;
  transition: all 0.3s ease;
  overflow: hidden;
  white-space: nowrap;
}
.footer__icon span {
  max-width: 0;
  opacity: 0;
  transition: all 0.3s ease;
  font-size: 0.875rem;
}
.footer__icon:hover span {
  max-width: 120px;
  opacity: 1;
  margin-left: 0.5rem;
}

.footer__icon span { max-width:0; opacity:0; transition:all .3s; font-size:.875rem; }
.footer__icon:hover span { max-width:120px; opacity:1; margin-left:.5rem; }
.footer__icon.facebook:hover   { color:#1877F2; }
.footer__icon.instagram:hover  { color:#E1306C; }
.footer__icon.twitter:hover    { color:#1DA1F2; }
.footer__icon.youtube:hover    { color:#f50606; }
.footer__icon.linkedin:hover   { color:#018afa; }
.footer__copy { font-size:var(--smaller-font-size); }





