/* =======================================================
   V1WEB - GLOBAL STYLES
======================================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {

  /* COLORS */
  --bg-primary: #0b0b0d;
  --bg-secondary: #131316;
  --bg-card: #1a1a1f;
  --bg-hover: #212126;

  --red-primary: #ff2b2b;
  --red-dark: #d61f1f;
  --red-glow: rgba(255, 43, 43, 0.18);

  --text-primary: #ffffff;
  --text-secondary: #b3b3b3;
  --text-muted: #7c7c85;

  --border-color: rgba(255,255,255,0.08);

  /* SHADOWS */
  --shadow-red:
    0px 0px 20px rgba(255, 43, 43, 0.15);

  --shadow-dark:
    0 15px 35px rgba(0,0,0,.35);

  /* TRANSITIONS */
  --transition: .3s ease;

  /* BORDER */
  --radius: 22px;
}

/* =======================================================
   RESET
======================================================= */

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

html{
  scroll-behavior: smooth;
}

body{
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
}

/* Scrollbar */

::-webkit-scrollbar{
  width: 8px;
}

::-webkit-scrollbar-track{
  background: var(--bg-primary);
}

::-webkit-scrollbar-thumb{
  background: var(--red-primary);
  border-radius: 20px;
}

/* =======================================================
   UTILITIES
======================================================= */

.container{
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
}

section{
  padding: 100px 0;
}

img{
  width: 100%;
  display: block;
}

a{
  text-decoration: none;
  color: inherit;
}

ul{
  list-style: none;
}

.section-title{
  text-align: center;
  margin-bottom: 70px;
}

.section-title.left{
  text-align: left;
}

.section-title span{
  color: var(--red-primary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: .85rem;
}

.section-title h2{
  font-size: 2.6rem;
  margin-top: 12px;
  font-weight: 800;
}

.center-btn{
  text-align: center;
  margin-top: 50px;
}

/* =======================================================
   BUTTONS
======================================================= */

.btn-primary,
.btn-secondary,
.btn-nav{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  transition: var(--transition);
  font-weight: 600;
  cursor: pointer;
}

.btn-primary{
  background: var(--red-primary);
  color: white;
  padding: 16px 32px;
  box-shadow: var(--shadow-red);
}

.btn-primary:hover{
  background: var(--red-dark);
  transform: translateY(-3px);
}

.btn-secondary{
  border: 1px solid var(--border-color);
  background: rgba(255,255,255,.04);
  padding: 16px 30px;
}

.btn-secondary:hover{
  border-color: var(--red-primary);
  color: var(--red-primary);
}

.btn-nav{
  background: var(--red-primary);
  color: white;
  padding: 12px 24px;
}

.btn-nav:hover{
  background: var(--red-dark);
}

.full-width{
  width: 100%;
}

/* =======================================================
   HEADER / NAVBAR
======================================================= */

.header{
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(11,11,13,.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.05);
}

.navbar{
  height: 85px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo{
  font-size: 1.8rem;
  font-weight: 900;
}

.logo span{
  color: var(--red-primary);
}

.nav-links{
  display: flex;
  gap: 35px;
}

.nav-links a{
  color: var(--text-secondary);
  font-weight: 500;
  transition: var(--transition);
  position: relative;
}

.nav-links a:hover,
.nav-links a.active{
  color: white;
}

.nav-links a::after{
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  background: var(--red-primary);
  transition: .3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after{
  width: 100%;
}

/* =======================================================
   HERO
======================================================= */

.hero{
  min-height: 90vh;
  display: flex;
  align-items: center;
}

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

.hero-badge{
  display: inline-block;
  background: rgba(255,43,43,.1);
  border: 1px solid rgba(255,43,43,.2);
  color: var(--red-primary);
  padding: 10px 18px;
  border-radius: 999px;
  margin-bottom: 25px;
  font-weight: 600;
}

.hero-text h1{
  font-size: 4rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 25px;
}

.hero-text p{
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  line-height: 1.8;
}

.hero-buttons{
  display: flex;
  gap: 18px;
  margin-top: 35px;
}

.hero-features{
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.feature{
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-secondary);
}

.feature i{
  color: var(--red-primary);
}

/* =======================================================
   HERO CARD
======================================================= */

.hero-card{
  position: relative;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  padding: 35px;
  border-radius: 30px;
  overflow: hidden;
  backdrop-filter: blur(20px);
}

.card-glow{
  position: absolute;
  top: -80px;
  right: -50px;
  width: 220px;
  height: 220px;
  background: rgba(255,43,43,.15);
  border-radius: 50%;
  filter: blur(90px);
}

.card-header{
  display: flex;
  gap: 10px;
  margin-bottom: 35px;
}

.dot{
  width: 14px;
  height: 14px;
  border-radius: 50%;
}

.red{
  background: #ff4d4d;
}

.yellow{
  background: #ffb84d;
}

.green{
  background: #47d764;
}

.card-content h3{
  font-size: 2rem;
  margin-bottom: 18px;
}

.card-content p{
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 30px;
}

.card-content button{
  border: none;
  background: var(--red-primary);
  color: white;
  padding: 16px 26px;
  border-radius: 14px;
  cursor: pointer;
  font-weight: 700;
  transition: var(--transition);
}

.card-content button:hover{
  background: var(--red-dark);
  transform: translateY(-3px);
}

/* =======================================================
   PAGE HERO
======================================================= */

.page-hero{
  text-align: center;
  padding: 140px 0 80px;
}

.page-hero h1{
  font-size: 3.4rem;
  max-width: 900px;
  margin: 20px auto;
  font-weight: 900;
}

.page-hero p{
  color: var(--text-secondary);
  max-width: 720px;
  margin: auto;
  line-height: 1.8;
  font-size: 1.1rem;
}

/* =======================================================
   SERVICES
======================================================= */

.services-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
  gap: 30px;
}

.service-card{
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 35px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card.large{
  min-height: 360px;
}

.service-card:hover{
  transform: translateY(-8px);
  border-color: rgba(255,43,43,.25);
  box-shadow: var(--shadow-red);
}

.service-card i{
  font-size: 2.2rem;
  color: var(--red-primary);
  margin-bottom: 20px;
}

.service-card h2,
.service-card h3{
  margin-bottom: 16px;
  font-size: 1.5rem;
}

.service-card p{
  color: var(--text-secondary);
  line-height: 1.8;
}

.service-list{
  margin-top: 25px;
}

.service-list li{
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  color: var(--text-secondary);
}

.service-list i{
  font-size: .9rem;
}

/* =======================================================
   PORTFOLIO
======================================================= */

.portfolio-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(320px,1fr));
  gap: 30px;
}

.portfolio-card{
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 35px;
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.portfolio-card:hover{
  transform: translateY(-8px);
  border-color: rgba(255,43,43,.25);
  box-shadow: var(--shadow-red);
}

.portfolio-icon{
  width: 70px;
  height: 70px;
  background: rgba(255,43,43,.12);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

.portfolio-icon i{
  color: var(--red-primary);
  font-size: 1.8rem;
}

.portfolio-tag{
  display: inline-block;
  margin-bottom: 18px;
  color: var(--red-primary);
  font-size: .9rem;
  font-weight: 700;
}

.portfolio-card h2{
  margin-bottom: 14px;
}

.portfolio-card p{
  color: var(--text-secondary);
  line-height: 1.8;
}

.portfolio-features{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.portfolio-features span{
  background: rgba(255,255,255,.06);
  border-radius: 999px;
  padding: 10px 14px;
  font-size: .85rem;
}

/* =======================================================
   PRICING
======================================================= */

.pricing-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(320px,1fr));
  gap: 30px;
}

.price-card{
  position: relative;
  background: var(--bg-card);
  border-radius: 28px;
  padding: 40px;
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.price-card:hover{
  transform: translateY(-8px);
}

.price-card.featured{
  border: 1px solid rgba(255,43,43,.35);
  box-shadow: var(--shadow-red);
}

.popular-tag{
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--red-primary);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: .75rem;
  font-weight: 700;
}

.price-label{
  color: var(--red-primary);
  font-weight: 700;
  text-transform: uppercase;
}

.price-card h2{
  margin: 15px 0;
}

.price{
  font-size: 2.6rem;
  font-weight: 900;
  margin-bottom: 20px;
}

.price-card p{
  color: var(--text-secondary);
  line-height: 1.7;
}

.price-features{
  margin: 30px 0;
}

.price-features li{
  display: flex;
  gap: 12px;
  margin-bottom: 18px;
}

.price-features i{
  color: var(--red-primary);
}

/* =======================================================
   FAQ
======================================================= */

.faq-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
  gap: 30px;
}

.faq-card{
  background: var(--bg-card);
  border-radius: 24px;
  border: 1px solid var(--border-color);
  padding: 30px;
}

.faq-card h3{
  margin-bottom: 15px;
}

.faq-card p{
  color: var(--text-secondary);
  line-height: 1.7;
}

/* =======================================================
   CONTACT
======================================================= */

.contact-grid{
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 40px;
}

.contact-form-card,
.info-card{
  background: var(--bg-card);
  border-radius: 30px;
  border: 1px solid var(--border-color);
}

.contact-form-card{
  padding: 45px;
}

.contact-form{
  margin-top: 30px;
}

.form-group{
  margin-bottom: 24px;
}

.form-group label{
  display: block;
  margin-bottom: 12px;
  font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea{
  width: 100%;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.04);
  border-radius: 16px;
  padding: 18px;
  color: white;
  font-size: 1rem;
  outline: none;
}

.form-group textarea{
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus{
  border-color: var(--red-primary);
}
.form-group select option{
  background: #1a1a1f;
  color: #ffffff;
}

.contact-info{
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.info-card{
  padding: 30px;
}

.info-card i{
  color: var(--red-primary);
  font-size: 2rem;
  margin-bottom: 20px;
}

.info-card h3{
  margin-bottom: 14px;
}

.info-card p{
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 20px;
}

/* =======================================================
   CTA
======================================================= */

.cta-section{
  text-align: center;
}

.cta-content{
  background: linear-gradient(
    145deg,
    rgba(255,43,43,.08),
    rgba(255,255,255,.02)
  );

  border: 1px solid rgba(255,43,43,.1);
  padding: 80px 50px;
  border-radius: 35px;
}

.cta-content h2{
  font-size: 2.7rem;
  margin-bottom: 20px;
}

.cta-content p{
  max-width: 700px;
  margin: auto;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 30px;
}

/* =======================================================
   FOOTER
======================================================= */

.footer{
  border-top: 1px solid rgba(255,255,255,.06);
  padding-top: 80px;
}

.footer-content{
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 40px;
}

.footer h3,
.footer h4{
  margin-bottom: 20px;
}

.footer span{
  color: var(--red-primary);
}

.footer p,
.footer li{
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.footer a:hover{
  color: var(--red-primary);
}

.copyright{
  border-top: 1px solid rgba(255,255,255,.06);
  margin-top: 50px;
  text-align: center;
  padding: 30px 0;
  color: var(--text-muted);
}

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

@media(max-width: 992px){

  .hero-content,
  .contact-grid,
  .footer-content{
    grid-template-columns: 1fr;
  }

  .hero-text h1{
    font-size: 3rem;
  }

  .page-hero h1{
    font-size: 2.6rem;
  }

  .nav-links{
    display: none;
  }
}

@media(max-width:768px){

  section{
    padding: 70px 0;
  }

  .hero{
    min-height: auto;
  }

  .hero-text h1{
    font-size: 2.4rem;
  }

  .section-title h2,
  .cta-content h2{
    font-size: 2rem;
  }

  .cta-content{
    padding: 50px 25px;
  }

  .hero-buttons{
    flex-direction: column;
  }

  .hero-features{
    flex-direction: column;
    align-items: flex-start;
  }


    /* =======================================================
    SCROLL ANIMATIONS
    ======================================================= */

    .hidden{
    opacity: 0;
    transform: translateY(40px);
    transition:
        opacity .8s ease,
        transform .8s ease;
    }

    .show{
    opacity: 1;
    transform: translateY(0);
    }


    

}
