/*
Theme Name: Digitilizers
Theme URI: https://digitilizers.com
Author: Digitilizers
Author URI: https://digitilizers.com
Description: A modern, high-converting digital marketing agency one-page theme. Features dark/light mode, full English/Arabic (RTL) bilingual support, animated hero slideshow, scrolling testimonials, pricing toggle, and AJAX contact form. Built with performance and conversions in mind.
Version: 2.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: digitilizers
Tags: one-page, marketing, agency, rtl-language-support, custom-logo, custom-background, featured-images, translation-ready
*/

/* ── Reset & Base ──────────────────────────── */
:root {
  --bg: 0 0% 100%;
  --fg: 0 0% 7%;
  --card: 0 0% 98%;
  --card-fg: 0 0% 7%;
  --primary: 28 90% 55%;
  --primary-fg: 0 0% 100%;
  --secondary: 0 0% 96%;
  --secondary-fg: 0 0% 7%;
  --muted: 0 0% 96%;
  --muted-fg: 0 0% 45%;
  --border: 0 0% 90%;
  --surface-dark: 0 0% 7%;
  --surface-dark-fg: 0 0% 95%;
  --radius: 0.75rem;
}

.dark {
  --bg: 0 0% 7%;
  --fg: 0 0% 95%;
  --card: 0 0% 12%;
  --card-fg: 0 0% 95%;
  --secondary: 0 0% 15%;
  --secondary-fg: 0 0% 95%;
  --muted: 0 0% 15%;
  --muted-fg: 0 0% 60%;
  --border: 0 0% 20%;
  --surface-dark: 0 0% 12%;
  --surface-dark-fg: 0 0% 95%;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: hsl(var(--bg));
  color: hsl(var(--fg));
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  transition: background 0.3s, color 0.3s;
}

[dir="rtl"] body { font-family: 'Cairo', 'Plus Jakarta Sans', sans-serif; }

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; padding: 0; }
button { font-family: inherit; }

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

/* ── Typography ────────────────────────────── */
h1, h2, h3, h4 { font-weight: 800; letter-spacing: -0.02em; line-height: 1.15; }

.section-label {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: hsl(var(--primary));
}

.section-heading {
  font-size: clamp(1.875rem, 5vw, 3rem);
  font-weight: 800;
  color: hsl(var(--fg));
}

.gradient-text {
  background: linear-gradient(135deg, hsl(var(--primary)), hsl(40 95% 60%));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Buttons ───────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.3s;
  border: none;
  font-family: inherit;
  text-decoration: none;
}

.btn-primary {
  background: hsl(var(--primary));
  color: hsl(var(--primary-fg));
  padding: 0.875rem 2rem;
}
.btn-primary:hover { filter: brightness(1.1); box-shadow: 0 0 30px hsl(28 90% 55% / 0.3); }

.btn-outline {
  background: transparent;
  color: hsl(var(--fg));
  padding: 0.875rem 2rem;
  border: 1px solid hsl(var(--border));
}
.btn-outline:hover { background: hsl(var(--secondary)); }

.btn-dark {
  background: hsl(var(--fg));
  color: hsl(var(--bg));
  padding: 0.75rem 1.5rem;
}
.btn-dark:hover { opacity: 0.9; }

/* ── Cards ──────────────────────────────────── */
.glass-card {
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: 1rem;
  padding: 2rem;
  transition: all 0.3s;
}
.glass-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -15px hsl(28 90% 55% / 0.15);
}

/* ── Navbar ─────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: hsl(var(--bg) / 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid hsl(var(--border));
  height: 4.5rem;
}
.navbar .container {
  display: flex; align-items: center; justify-content: space-between; height: 100%;
}
.navbar-logo img { height: 2.25rem; width: auto; }
.navbar-links { display: flex; align-items: center; gap: 0.25rem; }
.navbar-links a {
  padding: 0.5rem 1rem;
  font-size: 0.875rem; font-weight: 500;
  color: hsl(var(--muted-fg));
  border-radius: 0.5rem;
  transition: all 0.2s;
}
.navbar-links a:hover { color: hsl(var(--fg)); background: hsl(var(--secondary)); }
.navbar-actions { display: flex; align-items: center; gap: 0.5rem; }

.icon-btn {
  width: 2.5rem; height: 2.5rem;
  border-radius: 9999px;
  border: 1px solid hsl(var(--border));
  background: transparent;
  color: hsl(var(--muted-fg));
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all 0.2s; font-size: 1rem;
}
.icon-btn:hover { color: hsl(var(--fg)); background: hsl(var(--secondary)); }

.lang-btn {
  padding: 0.5rem 0.875rem;
  border-radius: 9999px;
  border: 1px solid hsl(var(--border));
  background: transparent;
  color: hsl(var(--muted-fg));
  font-size: 0.8125rem; font-weight: 500;
  cursor: pointer; transition: all 0.2s;
  display: inline-flex; align-items: center; gap: 0.375rem;
}
.lang-btn:hover { color: hsl(var(--fg)); background: hsl(var(--secondary)); }

.mobile-toggle { display: none; }

@media (max-width: 768px) {
  .navbar-links, .navbar-actions { display: none; }
  .mobile-toggle { display: flex; }
  .navbar-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 4.5rem; left: 0; right: 0;
    background: hsl(var(--bg));
    border-bottom: 1px solid hsl(var(--border));
    padding: 1rem; z-index: 49;
  }
  .navbar-actions.open {
    display: flex; flex-wrap: wrap; gap: 0.5rem;
    padding: 0.75rem 1rem 1rem;
    position: absolute; top: auto; left: 0; right: 0;
    background: hsl(var(--bg)); z-index: 49;
  }
}

/* ── Hero ───────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  padding-top: 4.5rem;
  overflow: hidden;
}
.hero-bg-glow {
  position: absolute;
  top: 25%; left: 50%; transform: translate(-50%, -50%);
  width: 800px; height: 800px;
  border-radius: 50%;
  background: hsl(var(--primary) / 0.05);
  filter: blur(120px);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 1; padding-top: 5rem; padding-bottom: 5rem; }
.hero-inner { max-width: 900px; margin: 0 auto; text-align: center; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  background: hsl(var(--secondary));
  border: 1px solid hsl(var(--border));
  font-size: 0.875rem; font-weight: 500;
  color: hsl(var(--muted-fg));
  margin-bottom: 2rem;
}
.hero-badge .dot {
  width: 0.5rem; height: 0.5rem;
  border-radius: 50%;
  background: hsl(var(--primary));
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{opacity:1;} 50%{opacity:0.4;} }

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  margin-bottom: 1.5rem; line-height: 1.1;
}
.hero p { font-size: 1.125rem; color: hsl(var(--muted-fg)); max-width: 640px; margin: 0 auto 2.5rem; }
.hero-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 4rem; }

.hero-slideshow-wrap {
  position: relative;
  border-radius: 1.25rem;
  overflow: hidden;
  border: 1px solid hsl(var(--border));
  height: 540px;
}
@media(max-width:768px){ .hero-slideshow-wrap{ height: 280px; } }
.hero-slideshow-wrap .gradient-overlay {
  position: absolute; bottom: 0; left: 0; right: 0; height: 50%;
  background: linear-gradient(to top, hsl(var(--bg)), transparent);
  z-index: 2;
}
.hero-slideshow { position: relative; width: 100%; height: 100%; }
.hero-slideshow img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0; transition: opacity 0.8s ease, transform 0.8s ease;
  transform: scale(1.05);
}
.hero-slideshow img.active { opacity: 1; transform: scale(1); }
.slide-dots {
  position: absolute; bottom: 1rem; left: 50%; transform: translateX(-50%);
  z-index: 10; display: flex; gap: 0.5rem; align-items: center;
}
.slide-dots button {
  width: 0.625rem; height: 0.625rem;
  border-radius: 9999px;
  border: none; cursor: pointer;
  background: hsl(var(--fg) / 0.3);
  transition: all 0.3s; padding: 0;
}
.slide-dots button.active { background: hsl(var(--primary)); width: 1.5rem; }

/* ── Marquee ────────────────────────────────── */
.hero-marquee {
  border-top: 1px solid hsl(var(--border));
  background: hsl(var(--bg) / 0.7);
  backdrop-filter: blur(8px);
  padding: 0.75rem 0;
  overflow: hidden;
  margin-top: 3rem;
}
.marquee-track {
  display: flex; gap: 3rem;
  animation: marquee 20s linear infinite;
  white-space: nowrap;
}
[dir="rtl"] .marquee-track { animation: marquee-rtl 20s linear infinite; }
.marquee-track span {
  font-size: 1rem; font-weight: 700;
  color: hsl(var(--muted-fg) / 0.35);
  display: inline-flex; align-items: center; gap: 1rem;
  white-space: nowrap;
}
.marquee-track .dot { width: 0.5rem; height: 0.5rem; border-radius: 50%; background: hsl(var(--primary)); display: inline-block; }
@keyframes marquee { 0%{transform:translateX(0);} 100%{transform:translateX(-50%);} }
@keyframes marquee-rtl { 0%{transform:translateX(0);} 100%{transform:translateX(50%);} }

/* ── Services (dark) ────────────────────────── */
.dark-section {
  background: hsl(var(--surface-dark));
  color: hsl(var(--surface-dark-fg));
}
.services { padding: 6rem 0; }
.services-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 4rem; }
.services-header h2 { font-size: clamp(2rem, 5vw, 3.25rem); color: white; margin-top: 0.75rem; }
.services-list { border-top: 1px solid hsl(0 0% 100% / 0.1); }
.service-row {
  display: flex; flex-direction: row;
  align-items: flex-start; gap: 3rem;
  padding: 2.5rem 1rem;
  border-bottom: 1px solid hsl(0 0% 100% / 0.1);
  cursor: pointer; transition: background 0.2s;
  border-radius: 0.75rem; margin: 0 -1rem;
}
.service-row:hover { background: hsl(0 0% 100% / 0.03); }
.service-num { font-size: 1.125rem; font-weight: 700; color: hsl(var(--primary)); min-width: 3rem; }
.service-body h3 {
  font-size: clamp(1.25rem, 2.5vw, 1.875rem);
  color: white; margin-bottom: 0.5rem;
  transition: color 0.2s;
}
.service-row:hover .service-body h3 { color: hsl(var(--primary)); }
.service-body p { color: hsl(0 0% 100% / 0.5); font-size: 0.9375rem; max-width: 640px; }
@media(max-width:640px){ .service-row{ flex-direction: column; gap: 0.5rem; } }

/* ── Stats ──────────────────────────────────── */
.stats { padding: 6rem 0; }
.stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
@media(min-width:768px){ .stats-grid{ grid-template-columns: repeat(4, 1fr); } }
.stat-card { text-align: center; padding: 2rem; }
.stat-icon {
  width: 3rem; height: 3rem;
  border-radius: 0.75rem;
  background: hsl(var(--primary) / 0.1);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.25rem;
}
.stat-card .value { font-size: 2.5rem; font-weight: 800; margin-bottom: 0.5rem; }
.stat-card .label { font-size: 0.875rem; color: hsl(var(--muted-fg)); }

/* ── Why Choose Us ──────────────────────────── */
.why-us { padding: 6rem 0; }
.why-grid { display: grid; gap: 4rem; align-items: center; }
@media(min-width:1024px){ .why-grid{ grid-template-columns: 1fr 1fr; } }
.why-reasons { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 2.5rem; }
.why-reason { display: flex; align-items: flex-start; gap: 1rem; }
.why-reason .icon-box {
  width: 2.5rem; height: 2.5rem; flex-shrink: 0;
  border-radius: 0.75rem;
  background: hsl(var(--primary) / 0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.125rem; margin-top: 0.125rem;
}
.why-reason h4 { font-weight: 700; font-size: 1rem; margin-bottom: 0.25rem; }
.why-reason p { font-size: 0.875rem; color: hsl(var(--muted-fg)); }
.why-cards { display: flex; flex-direction: column; gap: 1.5rem; }
.why-card-item { display: flex; align-items: center; gap: 1rem; }
.why-card-item .check { color: hsl(var(--primary)); font-size: 1.25rem; flex-shrink: 0; }
.why-card-item h4 { font-weight: 700; font-size: 1rem; margin-bottom: 0.25rem; }
.why-card-item p { font-size: 0.875rem; color: hsl(var(--muted-fg)); }

/* ── Testimonials ───────────────────────────── */
.testimonials { padding: 6rem 0; overflow: hidden; background: hsl(var(--secondary) / 0.2); }
.testimonial-track {
  display: flex; gap: 1.5rem;
  animation: scroll-left 30s linear infinite;
}
[dir="rtl"] .testimonial-track { animation: scroll-right 30s linear infinite; }
.testimonial-card {
  flex-shrink: 0; width: 420px;
  position: relative;
}
.testimonial-card .quote-icon {
  position: absolute; top: 1.5rem; right: 1.5rem;
  font-size: 2rem; color: hsl(var(--primary) / 0.2);
  line-height: 1;
}
[dir="rtl"] .testimonial-card .quote-icon { right: auto; left: 1.5rem; }
.testimonial-card .stars { margin-bottom: 1rem; color: hsl(var(--primary)); font-size: 0.875rem; letter-spacing: 0.1em; }
.testimonial-card blockquote { font-size: 0.9375rem; color: hsl(var(--fg) / 0.85); line-height: 1.7; margin-bottom: 1.5rem; font-style: italic; }
.testimonial-card .author { font-weight: 700; font-size: 0.9375rem; }
.testimonial-card .company { font-size: 0.8125rem; color: hsl(var(--muted-fg)); }
@keyframes scroll-left { 0%{transform:translateX(0);} 100%{transform:translateX(-50%);} }
@keyframes scroll-right { 0%{transform:translateX(0);} 100%{transform:translateX(50%);} }

/* ── What We Deliver ────────────────────────── */
.deliver { padding: 5rem 0; overflow: hidden; }
.deliver-header { margin-bottom: 3rem; }
.deliver-header h2 { font-size: clamp(2rem, 4vw, 3rem); color: white; margin-top: 0.75rem; }
.deliver-track {
  display: flex; gap: 1.5rem;
  animation: scroll-left 25s linear infinite;
}
[dir="rtl"] .deliver-track { animation: scroll-right 25s linear infinite; }
.deliver-item { flex-shrink: 0; width: 320px; cursor: pointer; }
.deliver-item .img-wrap { border-radius: 1rem; overflow: hidden; margin-bottom: 1rem; border: 1px solid hsl(0 0% 100% / 0.1); }
.deliver-item img { width: 100%; height: 208px; object-fit: cover; transition: transform 0.5s; }
.deliver-item:hover img { transform: scale(1.05); }
.deliver-item h3 { font-size: 1.125rem; font-weight: 700; color: white; margin-bottom: 0.375rem; transition: color 0.2s; }
.deliver-item:hover h3 { color: hsl(var(--primary)); }
.deliver-item p { font-size: 0.8125rem; color: hsl(0 0% 100% / 0.5); line-height: 1.6; }

/* ── Pricing ────────────────────────────────── */
.pricing { padding: 6rem 0; }
.pricing-toggle { display: flex; align-items: center; justify-content: center; gap: 0.75rem; margin-bottom: 3rem; }
.toggle-btn {
  padding: 0.625rem 1.25rem;
  border-radius: 9999px;
  border: none; cursor: pointer;
  font-size: 0.875rem; font-weight: 600;
  transition: all 0.2s; font-family: inherit;
}
.toggle-btn.active { background: hsl(var(--primary)); color: hsl(var(--primary-fg)); }
.toggle-btn:not(.active) { background: hsl(var(--secondary)); color: hsl(var(--muted-fg)); }
.toggle-btn:not(.active):hover { color: hsl(var(--fg)); }
.pricing-grid { display: grid; gap: 1.5rem; margin-top: 1rem; }
@media(min-width:640px){ .pricing-grid{ grid-template-columns: repeat(2, 1fr); } }
@media(min-width:1024px){ .pricing-grid{ grid-template-columns: repeat(4, 1fr); } }

.pricing-card {
  border-radius: 1rem;
  padding: 1.75rem;
  border: 1px solid hsl(var(--border));
  background: hsl(var(--card));
  position: relative;
  transition: all 0.3s;
}
.pricing-card:hover { transform: translateY(-4px); }
.pricing-card.featured { background: hsl(var(--fg)); color: hsl(var(--bg)); border-color: hsl(var(--fg)); }
.pricing-card.featured .popular-badge {
  position: absolute; top: -0.875rem; left: 50%; transform: translateX(-50%);
  background: hsl(var(--primary)); color: white;
  padding: 0.25rem 1rem;
  border-radius: 9999px; font-size: 0.6875rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em;
  white-space: nowrap;
}
.pricing-card h3 { font-size: 1.125rem; font-weight: 700; margin-bottom: 0.75rem; }
.pricing-card .price { font-size: 2rem; font-weight: 800; margin-bottom: 0.25rem; }
.pricing-card .price span { font-size: 0.875rem; font-weight: 400; opacity: 0.6; }
.pricing-card .plan-desc { font-size: 0.8125rem; opacity: 0.65; margin-bottom: 1.5rem; }
.pricing-card ul { margin-bottom: 2rem; display: flex; flex-direction: column; gap: 0.75rem; }
.pricing-card ul li { font-size: 0.8125rem; display: flex; align-items: flex-start; gap: 0.625rem; }
.pricing-card ul li .check-icon { color: hsl(var(--primary)); flex-shrink: 0; margin-top: 0.125rem; }
.pricing-card .cta-btn {
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  width: 100%; padding: 0.75rem 1.5rem;
  border-radius: 9999px; border: none; cursor: pointer;
  font-size: 0.875rem; font-weight: 600; font-family: inherit;
  text-decoration: none; transition: all 0.2s;
}
.pricing-card:not(.featured) .cta-btn { background: hsl(var(--fg)); color: hsl(var(--bg)); }
.pricing-card:not(.featured) .cta-btn:hover { opacity: 0.85; }
.pricing-card.featured .cta-btn { background: hsl(var(--primary)); color: white; }
.pricing-card.featured .cta-btn:hover { filter: brightness(1.1); }

/* ── Blog ───────────────────────────────────── */
.blog { padding: 6rem 0; background: hsl(var(--secondary) / 0.2); }
.blog-grid { display: grid; gap: 1.5rem; margin-top: 4rem; }
@media(min-width:768px){ .blog-grid{ grid-template-columns: repeat(3, 1fr); } }
.blog-card { overflow: hidden; padding: 0; }
.blog-card .thumb {
  height: 12rem;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, hsl(var(--primary) / 0.2), hsl(var(--secondary)));
}
.blog-card .category-tag {
  font-size: 0.75rem; font-weight: 600;
  background: hsl(var(--primary) / 0.1);
  color: hsl(var(--primary));
  padding: 0.375rem 1rem; border-radius: 9999px;
}
.blog-card .content-pad { padding: 1.5rem; }
.blog-card .meta { font-size: 0.75rem; color: hsl(var(--muted-fg)); margin-bottom: 0.75rem; }
.blog-card h3 { font-size: 1.0625rem; margin-bottom: 0.5rem; transition: color 0.2s; }
.blog-card:hover h3 { color: hsl(var(--primary)); }
.blog-card p { font-size: 0.875rem; color: hsl(var(--muted-fg)); margin-bottom: 1rem; }
.read-more { font-size: 0.875rem; font-weight: 600; color: hsl(var(--primary)); display: inline-flex; align-items: center; gap: 0.25rem; transition: gap 0.2s; }
.blog-card:hover .read-more { gap: 0.5rem; }

/* ── Contact ────────────────────────────────── */
.contact { padding: 6rem 0; }
.contact-grid { display: grid; gap: 4rem; max-width: 960px; margin: 0 auto; }
@media(min-width:1024px){ .contact-grid{ grid-template-columns: 1fr 1fr; } }
.contact-info-items { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 2.5rem; }
.contact-info-item { display: flex; align-items: center; gap: 1rem; }
.contact-info-item .icon-box {
  width: 3rem; height: 3rem; flex-shrink: 0;
  border-radius: 0.75rem;
  background: hsl(var(--primary) / 0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.125rem;
}
.contact-info-item .info-label { font-size: 0.8125rem; color: hsl(var(--muted-fg)); }
.contact-info-item .info-value { font-weight: 600; }
.contact-form .form-group { margin-bottom: 1.25rem; }
.contact-form label { display: block; font-size: 0.875rem; font-weight: 500; margin-bottom: 0.5rem; }
.contact-form input,
.contact-form textarea {
  width: 100%; padding: 0.875rem 1rem;
  border-radius: 0.75rem;
  border: 1px solid hsl(var(--border));
  background: hsl(var(--secondary));
  color: hsl(var(--fg));
  font-size: 0.9375rem; font-family: inherit;
  transition: all 0.2s;
}
.contact-form input:focus, .contact-form textarea:focus {
  outline: none;
  border-color: hsl(var(--primary));
  box-shadow: 0 0 0 3px hsl(var(--primary) / 0.15);
}
.contact-form textarea { resize: none; }

/* ── Footer ─────────────────────────────────── */
.site-footer {
  border-top: 1px solid hsl(var(--border));
  padding: 4rem 0 2rem;
  background: hsl(var(--secondary) / 0.15);
}
.footer-grid { display: grid; gap: 3rem; margin-bottom: 3rem; }
@media(min-width:768px){ .footer-grid{ grid-template-columns: 1.75fr 1fr 1fr 1fr; } }
@media(max-width:480px){ .footer-grid{ grid-template-columns: 1fr 1fr; } }
.footer-col h4 { font-size: 1rem; margin-bottom: 1rem; }
.footer-col p, .footer-col li, .footer-col a { font-size: 0.875rem; color: hsl(var(--muted-fg)); }
.footer-col a:hover { color: hsl(var(--primary)); }
.footer-col ul li { padding: 0.375rem 0; }
.footer-social { display: flex; gap: 0.75rem; margin-top: 1.5rem; }
.footer-social a {
  width: 2.25rem; height: 2.25rem;
  border-radius: 9999px;
  border: 1px solid hsl(var(--border));
  background: hsl(var(--secondary));
  display: flex; align-items: center; justify-content: center;
  color: hsl(var(--muted-fg)); font-size: 0.75rem;
  transition: all 0.2s;
}
.footer-social a:hover { color: hsl(var(--primary)); border-color: hsl(var(--primary)); }
.footer-bottom {
  border-top: 1px solid hsl(var(--border));
  padding-top: 2rem; text-align: center;
  font-size: 0.875rem; color: hsl(var(--muted-fg));
}

/* ── Scroll Animations ──────────────────────── */
.fade-in {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-left { opacity: 0; transform: translateX(-24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in-left.visible { opacity: 1; transform: translateX(0); }
.fade-in-right { opacity: 0; transform: translateX(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in-right.visible { opacity: 1; transform: translateX(0); }

/* ── Responsive ─────────────────────────────── */
@media(max-width:768px){
  .services-header { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
  .why-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .testimonial-card { width: 300px; }
}
