/* common-styles.css - Shared styles for header and footer */

:root {
  --bg: #13131a;
  --surface: #13131a;
  --surface-light: #1a1a24;
  --text: #f8f9fa;
  --text-muted: #9ca3af;
  --accent: #e74c3c;
  --accent-glow: rgba(231, 76, 60, 0.3);
  --accent-dark: #c0392b;
  --max: 1400px;
  --muted: #9ca3af;
  --radius: 16px;
  --ring: rgba(231, 76, 60, 0.1);
}

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

html { 
  scroll-behavior: smooth; 
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  overflow-x: hidden;
  line-height: 1.6;
}

/* Navigation Styles */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.3s ease;
}

.nav.scrolled {
  background: rgba(10, 10, 15, 0.95);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1.2rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text);
}

.nav__logo span {
  color: var(--accent);
}

.nav__links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav__link {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.nav__link:hover { 
  color: var(--text); 
}

.nav__cta {
  padding: 0.65rem 1.5rem;
  background: var(--accent);
  border: none;
  border-radius: 50px;
  color: white;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  font-size: 0.95rem;
}

.nav__cta:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px var(--accent-glow);
}
/* Footer Styles - Mobile Responsive */
.vdo-footer {
  font-family: "Poppins", 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: linear-gradient(0deg, rgba(231,78,61,.06), rgba(231,78,61,.06)) top/100% 1px no-repeat, var(--bg);
}

.vdo-footer .wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 56px 20px;
  display: grid;
  gap: 36px;
  grid-template-columns: 1.25fr repeat(1, 1fr) 1fr;
}

/* Brand Section */
.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer__logo {
  width: 174px;
  height: auto;
  max-width: 100%;
}

/* Social Links */
.vdo-social {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.vdo-social a {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #14181e;
  text-decoration: none;
  transition: transform 0.15s ease, border-color 0.2s ease;
  flex-shrink: 0;
}

.vdo-social a:hover {
  transform: translateY(-1px);
  border-color: rgba(231, 78, 61, 0.5);
}

.vdo-social svg {
  width: 16px;
  height: 16px;
  fill: #e3e8ee;
}

/* Column Styles */
.vdo-col h4 {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #b8c1ca;
  margin: 2px 0 14px;
  font-weight: 600;
}

.vdo-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.vdo-col a {
  color: var(--text);
  text-decoration: none;
  font-size: 15px;
  font-weight: 400;
  opacity: 0.9;
  position: relative;
  padding: 0.5px 0;
  display: inline-block;
}

.vdo-col a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  height: 1px;
  width: 0;
  background: linear-gradient(90deg, var(--accent), transparent 70%);
  transition: width 0.25s ease;
}

.vdo-col a:hover {
  opacity: 1;
}

.vdo-col a:hover::after {
  width: 100%;
}

/* CTA Card */
.vdo-cta {
  align-self: start;
  background: linear-gradient(180deg, #171a20, #13161b);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  padding: 18px;
  display: grid;
  gap: 14px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.vdo-cta p {
  margin: 0;
  color: #cdd6df;
  font-size: 14px;
  line-height: 1.5;
}

.vdo-cta .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, #ff7b6c, #e74e3d);
  color: white;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.2px;
  transition: transform 0.12s ease, box-shadow 0.2s ease;
  box-shadow: 0 8px 18px rgba(231, 78, 61, 0.35);
}

.vdo-cta .btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 26px rgba(231, 78, 61, 0.42);
}

.vdo-cta .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
  opacity: 0.7;
}

/* Bottom Bar */
.vdo-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  max-width: 1200px;
  margin: 0 auto;
  color: #aeb6bf;
  font-size: 13px;
  flex-wrap: wrap;
}

.footer__legal {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer__legal a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.footer__legal a:hover {
  color: var(--text);
}

.footer__divider {
  color: var(--text-muted);
  opacity: 0.5;
}
 .logo-class{
      width:10%;
  }

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

/* Tablet Landscape - 1100px */
@media (max-width: 1100px) {
  .vdo-footer .wrap {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 32px;
  }
  
  .footer__brand {
    grid-column: 1 / -1;
    align-items: center;
    text-align: center;
  }
  
  .vdo-social {
    justify-content: center;
  }
  
  .vdo-cta {
    grid-column: 1 / -1;
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
  }
}

/* Tablet Portrait - 768px */
@media (max-width: 768px) {
  .vdo-footer .wrap {
    grid-template-columns: 1fr 1fr;
    padding: 40px 20px;
    gap: 28px;
  }
  
  .footer__brand {
    grid-column: 1 / -1;
  }
  
  .footer__logo {
    width: 150px;
  }
  
  .vdo-col h4 {
    font-size: 11px;
    margin-bottom: 12px;
  }
  
  .vdo-col a {
    font-size: 14px;
  }
  
  .vdo-cta {
    grid-column: 1 / -1;
  }
  
  .vdo-bottom {
    flex-direction: column;
    text-align: center;
    padding: 16px 20px;
  }
}

/* Mobile Landscape - 640px */
@media (max-width: 640px) {
  .vdo-footer .wrap {
    grid-template-columns: 1fr;
    padding: 32px 16px;
    gap: 24px;
  }
  
  .footer__brand {
    gap: 12px;
  }
  
  .footer__logo {
    width: 140px;
  }
  
  .vdo-social {
    gap: 12px;
  }
  
  .vdo-social a {
    width: 32px;
    height: 32px;
  }
  
  .vdo-col {
    text-align: center;
  }
  
  .vdo-col h4 {
    margin-bottom: 10px;
  }
  
  .vdo-col ul {
    gap: 8px;
  }
  
  .vdo-cta {
    padding: 16px;
    gap: 12px;
  }
  
  .vdo-cta p {
    font-size: 13px;
  }
  
  .vdo-cta .btn {
    padding: 10px 14px;
    font-size: 14px;
  }
  
  .footer__legal {
    justify-content: center;
    gap: 0.5rem;
  }
  
  .footer__legal a {
    font-size: 12px;
  }
  
  .vdo-bottom {
    font-size: 12px;
    gap: 12px;
  }
}

/* Mobile Portrait - 480px */
@media (max-width: 480px) {
  .vdo-footer .wrap {
    padding: 28px 12px;
    gap: 20px;
  }
  .vdo-col{
      text-align:center
  }
  .logo-class{
      width:30%;
  }
  .footer__logo {
    width: 120px;
  }
  
  .vdo-social {
    gap: 10px;
  }
  
  .vdo-social a {
    width: 30px;
    height: 30px;
  }
  
  .vdo-social svg {
    width: 14px;
    height: 14px;
  }
  
  .vdo-col h4 {
    font-size: 10px;
  }
  
  .vdo-col a {
    font-size: 13px;
  }
  
  .vdo-cta {
    padding: 14px;
  }
  
  .vdo-cta p {
    font-size: 12px;
  }
  
  .vdo-bottom {
    padding: 12px 16px;
  }
  
  .footer__legal {
    flex-direction: column;
    gap: 8px;
  }
  
  .footer__divider {
    display: none;
  }
}

/* Extra Small Mobile - 360px */
@media (max-width: 360px) {
  .vdo-footer .wrap {
    padding: 24px 10px;
  }
  
  .footer__logo {
    width: 100px;
  }
  
  .vdo-col a {
    font-size: 12px;
  }
  
  .vdo-cta .btn {
    padding: 8px 12px;
    font-size: 13px;
  }
}

/* Landscape Mobile Optimization */
@media (max-height: 500px) and (orientation: landscape) {
  .vdo-footer .wrap {
    padding: 20px 16px;
  }
  
  .footer__brand {
    gap: 8px;
  }
  
  .vdo-social {
    gap: 8px;
  }
}