/* =========================================================
   Ads4Tech - Premium Digital Marketing & Technology Agency
   Main Stylesheet
   ========================================================= */

:root {
  --color-primary-bg: #050B10;
  --color-primary-text: #EAFBFF;
  --color-secondary-text: #9DB8C4;
  --color-dark: #020A0F;
  --color-accent: #21E3FF;
  --color-secondary-accent: #2CC6FF;
  --color-success: #12F7C3;
  --color-white: #FFFFFF;
  --font-heading: 'Space Grotesk', 'Manrope', sans-serif;
  --font-body: 'Inter', sans-serif;
  --gradient-accent: linear-gradient(135deg, #21E3FF 0%, #0AB8D6 100%);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.25);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.35);
  --shadow-lg: 0 12px 32px rgba(0, 0, 0, 0.45);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-primary-text);
  background:
    radial-gradient(circle at top left, rgba(33, 227, 255, 0.18), transparent 25%),
    radial-gradient(circle at bottom right, rgba(0, 184, 214, 0.14), transparent 35%),
    var(--color-primary-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.5rem;
  color: var(--color-primary-text);
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1rem; }
h6 { font-size: 0.875rem; }

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

a {
  color: var(--color-accent);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--color-secondary-accent);
}

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

ul, ol {
  list-style-position: inside;
  margin-bottom: 1rem;
}

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

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

.section-padding-sm {
  padding: 60px 0;
}

.section-padding-lg {
  padding: 140px 0;
}

.bg-light {
  background-color: #091419;
}

.bg-white {
  background-color: #0C141A;
}

.bg-dark {
  background-color: var(--color-dark);
  color: var(--color-white);
}

.bg-dark h1,
.bg-dark h2,
.bg-dark h3,
.bg-dark h4,
.bg-dark h5,
.bg-dark h6 {
  color: var(--color-white);
}

.bg-dark p {
  color: rgba(255, 255, 255, 0.8);
}

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

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  line-height: 1.2;
}

.btn-primary {
  background: var(--gradient-accent);
  color: var(--color-white);
  border: none;
  box-shadow: 0 0 20px rgba(33, 227, 255, 0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(25, 217, 242, 0.3);
  color: var(--color-white);
}

.btn-outline {
  background: transparent;
  border-color: rgba(33, 227, 255, 0.7);
  color: var(--color-accent);
}

.btn-outline:hover {
  background: rgba(33, 227, 255, 0.08);
  color: var(--color-white);
}

.btn-light {
  background: var(--color-white);
  color: var(--color-primary-text);
}

.btn-light:hover {
  background: var(--color-primary-bg);
}

.btn-whatsapp {
  background: #25D366;
  color: var(--color-white);
}

.btn-whatsapp:hover {
  background: #1DA851;
  color: var(--color-white);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.9rem;
}

/* ---------- Section Headings ---------- */
.section-heading {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.section-heading h2 {
  margin-bottom: 20px;
}

.section-heading p {
  font-size: 1.15rem;
}

/* ---------- Cards ---------- */
.card {
  background: rgba(14, 24, 30, 0.9);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid rgba(33, 227, 255, 0.12);
}

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

.card-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background: var(--gradient-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--color-white);
  font-size: 24px;
}

/* ---------- Grid System ---------- */
.grid {
  display: grid;
  gap: 30px;
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-5 { grid-template-columns: repeat(5, 1fr); }
.grid-6 { grid-template-columns: repeat(6, 1fr); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(2, 10, 15, 0.82);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(33, 227, 255, 0.14);
  transition: var(--transition);
}

.site-header.scrolled {
  padding: 8px 0;
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.site-logo {
  display: flex;
  align-items: center;
}

.site-logo img {
  max-height: 48px;
  width: auto;
}

.site-logo .logo-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.75rem;
  color: var(--color-primary-text);
}

.main-navigation ul {
  display: flex;
  list-style: none;
  gap: 28px;
  margin: 0;
  padding: 0;
}

.main-navigation a {
  color: var(--color-primary-text);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  text-decoration: none;
}

.main-navigation a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-accent);
  transition: var(--transition);
}

.main-navigation a:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.search-toggle,
.whatsapp-icon {
  background: none;
  border: none;
  color: var(--color-primary-text);
  font-size: 1.2rem;
  cursor: pointer;
  transition: var(--transition);
}

.search-toggle:hover,
.whatsapp-icon:hover {
  color: var(--color-accent);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  background: #050b10;
}

.video-bg-wrap {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.28;
  filter: brightness(0.6) saturate(1.2) contrast(1.1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 11, 16, 0.92) 0%, rgba(5, 11, 16, 0.7) 45%, rgba(5, 11, 16, 0.5) 100%),
    radial-gradient(circle at top left, rgba(33, 227, 255, 0.18), transparent 30%);
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-text h1 {
  font-size: 4rem;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero-text .lead {
  font-size: 1.25rem;
  color: var(--color-secondary-text);
  margin-bottom: 32px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.trust-indicators {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 0.9rem;
  color: var(--color-secondary-text);
  font-weight: 500;
}

.trust-indicators span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.trust-indicators i {
  color: var(--color-success);
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-visual-inner {
  width: 100%;
  max-width: 520px;
  aspect-ratio: 1;
  background: linear-gradient(135deg, rgba(33, 227, 255, 0.10), rgba(2, 10, 15, 0.75));
  border: 1px solid rgba(33, 227, 255, 0.25);
  box-shadow: 0 0 0 1px rgba(33, 227, 255, 0.1), 0 20px 50px rgba(0, 0, 0, 0.35);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-visual-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" opacity="0.1"><circle cx="50" cy="50" r="40" fill="none" stroke="white" stroke-width="2"/><circle cx="50" cy="50" r="20" fill="none" stroke="white" stroke-width="1"/><path d="M0,50 L100,50 M50,0 L50,100" stroke="white" stroke-width="0.5"/></svg>');
  background-size: cover;
  opacity: 0.1;
}

.hero-visual-inner .floating-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  padding: 20px;
  position: relative;
  z-index: 1;
}

.hero-visual-inner .icon-badge {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(33, 227, 255, 0.20);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 20px 24px;
  color: var(--color-white);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ---------- Trust Stats ---------- */
.trust-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-accent);
  font-family: var(--font-heading);
}

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

/* ---------- Services Grid ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
}

.service-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card p {
  flex-grow: 1;
}

.service-card .btn {
  align-self: flex-start;
  margin-top: auto;
}

/* ---------- Dark Section ---------- */
.dark-section {
  background: var(--color-dark);
  color: var(--color-white);
}

.dark-section h1,
.dark-section h2,
.dark-section h3 {
  color: var(--color-white);
}

.dark-section p {
  color: rgba(255, 255, 255, 0.8);
}

.dark-section .card {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(33, 227, 255, 0.14);
  color: var(--color-white);
}

.dark-section .card h3 {
  color: var(--color-white);
}

/* ---------- Process Timeline ---------- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  counter-reset: step;
}

.process-step {
  counter-increment: step;
  padding: 30px;
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  position: relative;
}

.process-step::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 2rem;
  color: var(--color-accent);
  display: block;
  margin-bottom: 16px;
}

/* ---------- Footer ---------- */
.site-footer {
  background: #020A0F;
  color: rgba(255, 255, 255, 0.8);
  padding: 80px 0 0;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 60px;
}

.footer-column h4 {
  color: var(--color-white);
  font-size: 1.1rem;
  margin-bottom: 20px;
}

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

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

.footer-column a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
  text-decoration: none;
}

.footer-column a:hover {
  color: var(--color-accent);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}

.footer-bottom a:hover {
  color: var(--color-accent);
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(33, 227, 255, 0.08);
  border: 1px solid rgba(33, 227, 255, 0.20);
  color: var(--color-white);
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--color-accent);
  color: var(--color-white);
}

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

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

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
  70% { box-shadow: 0 0 0 20px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ---------- Mobile Sticky CTA ---------- */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-white);
  box-shadow: 0 -4px 12px rgba(11, 17, 23, 0.1);
  padding: 10px 20px;
  z-index: 998;
  justify-content: space-between;
  gap: 10px;
}

.mobile-cta .btn {
  flex: 1;
  text-align: center;
  padding: 12px;
  font-size: 0.9rem;
}

/* ---------- Breadcrumb ---------- */
.breadcrumb {
  margin-bottom: 40px;
  font-size: 0.9rem;
  color: var(--color-secondary-text);
}

.breadcrumb .container {
  padding: 0;
}

.breadcrumb a {
  color: var(--color-accent);
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb span {
  margin: 0 8px;
  color: #D0D5DD;
}

/* ---------- Single Post / Page ---------- */
.single-post-layout {
  max-width: 800px;
  margin: 0 auto;
}

.entry-title {
  margin-bottom: 20px;
}

.post-meta {
  margin-bottom: 30px;
  font-size: 0.9rem;
  color: var(--color-secondary-text);
}

.post-thumbnail {
  margin-bottom: 30px;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.entry-content {
  margin-bottom: 40px;
}

.entry-content h2,
.entry-content h3 {
  margin-top: 2em;
  margin-bottom: 0.5em;
}

.post-categories {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #EAECF0;
  font-size: 0.9rem;
}

/* ---------- Pagination ---------- */
.pagination {
  margin-top: 40px;
  text-align: center;
}

.pagination .nav-links {
  display: inline-flex;
  gap: 8px;
}

.pagination .page-numbers {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 8px;
  background: var(--color-white);
  color: var(--color-primary-text);
  border: 1px solid #EAECF0;
  transition: var(--transition);
  text-decoration: none;
}

.pagination .page-numbers:hover,
.pagination .page-numbers.current {
  background: var(--color-accent);
  color: var(--color-white);
  border-color: var(--color-accent);
}

/* ---------- Service Single Page ---------- */
.service-header {
  margin-bottom: 40px;
}

.service-icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  background: var(--gradient-accent);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin: 0 auto 20px;
}

.service-section {
  margin-bottom: 40px;
}

.check-list,
.process-list {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 12px;
}

.check-list li,
.process-list li {
  padding-left: 24px;
  position: relative;
}

.check-list li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--color-success);
  font-weight: bold;
}

.process-list {
  counter-reset: service-process;
}

.process-list li {
  counter-increment: service-process;
  padding-left: 40px;
}

.process-list li::before {
  content: counter(service-process, decimal-leading-zero);
  position: absolute;
  left: 0;
  font-weight: 700;
  color: var(--color-accent);
  font-family: var(--font-heading);
}

.tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tech-tag {
  background: rgba(33, 227, 255, 0.10);
  color: var(--color-accent);
  border: 1px solid rgba(33, 227, 255, 0.18);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
}

.faq-list {
  display: grid;
  gap: 16px;
}

.faq-item {
  background: var(--color-white);
  padding: 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.faq-item h3 {
  font-size: 1rem;
  margin-bottom: 10px;
}

.service-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- Portfolio Cards ---------- */
.portfolio-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.portfolio-thumb {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 20px;
  border-radius: var(--radius-sm);
}

.portfolio-info h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.portfolio-info .client,
.portfolio-info .industry {
  font-size: 0.9rem;
  margin-bottom: 5px;
  color: var(--color-secondary-text);
}

/* ---------- Testimonial Cards ---------- */
.testimonial-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial-rating {
  display: flex;
  gap: 4px;
  font-size: 1.2rem;
}

.testimonial-rating .star {
  color: #D0D5DD;
}

.testimonial-rating .star.filled {
  color: #FDB022;
}

.testimonial-card blockquote {
  font-style: italic;
  color: var(--color-primary-text);
  margin: 0;
  flex-grow: 1;
}

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

.testimonial-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-author strong {
  display: block;
  color: var(--color-primary-text);
}

.testimonial-author span {
  font-size: 0.9rem;
  color: var(--color-secondary-text);
}

/* ---------- Industry Cards ---------- */
.industry-card {
  text-align: center;
  padding: 20px;
}

.industry-card a {
  color: var(--color-primary-text);
  text-decoration: none;
  font-weight: 600;
}

.industry-card:hover a {
  color: var(--color-accent);
}

/* ---------- Search Form ---------- */
.search-form {
  display: flex;
  gap: 10px;
  margin-bottom: 30px;
}

.search-form input[type="search"] {
  flex: 1;
  padding: 12px 20px;
  border: 1px solid #D0D5DD;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 1rem;
}

.search-form button {
  padding: 12px 24px;
  border: none;
  border-radius: 50px;
  background: var(--gradient-accent);
  color: var(--color-white);
  cursor: pointer;
  font-weight: 600;
}

/* ---------- Animations ---------- */
.fade-in {
  animation: fadeInUp 0.6s ease forwards;
}

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

/* ---------- Utility Classes ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mt-20 { margin-top: 20px; }
.mb-20 { margin-bottom: 20px; }
.mt-40 { margin-top: 40px; }
.mb-40 { margin-bottom: 40px; }
.hidden { display: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  h1 { font-size: 3rem; }
  h2 { font-size: 2rem; }
  .grid-4, .grid-5, .grid-6 {
    grid-template-columns: repeat(3, 1fr);
  }
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-visual {
    order: -1;
  }
  .hero-text h1 {
    font-size: 3rem;
  }
  .footer-columns {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.75rem; }
  h3 { font-size: 1.25rem; }
  .section-padding { padding: 60px 0; }
  .container { padding: 0 16px; }
  .grid-2, .grid-3, .grid-4, .grid-5, .grid-6,
  .services-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }
  .main-navigation {
    display: none;
  }
  .header-actions .btn {
    display: none;
  }
  .mobile-cta {
    display: flex;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .trust-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-grid {
    grid-template-columns: 1fr;
  }
  .whatsapp-float {
    bottom: 80px;
    right: 20px;
    width: 50px;
    height: 50px;
    font-size: 22px;
  }
  .hero {
    padding: 80px 0 60px;
  }
  .hero-text h1 {
    font-size: 2.5rem;
  }
  .hero-content {
    gap: 30px;
  }
  .hero-buttons {
    flex-direction: column;
    align-items: flex-start;
  }
  .trust-indicators {
    gap: 10px;
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .trust-stats {
    grid-template-columns: 1fr;
  }
  .footer-columns {
    grid-template-columns: 1fr;
  }
  .header-inner {
    padding: 10px 0;
  }
  .site-logo img {
    max-height: 36px;
  }
  .btn {
    padding: 12px 20px;
    font-size: 0.9rem;
  }
}

/* ---------- Reduced Motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .fade-in {
    animation: none;
  }
}

.parent-container {
  position: relative;
  overflow: hidden;
}
video.hero-video {
  z-index: -1; /* Keep it behind content */
}

@media (prefers-reduced-motion: reduce) {
  video.hero-video {
    display: none;
  }
}