/* Poppins font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

/* Reset */
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

/* Variables */
:root{
  --bg-color: #000000;
  --second-color: #FF0000;
}

/* Body */
body{
  background-color: #000;
  color: #fff;
}

/* LINKS */
a{
  text-decoration: none;
  color: white;
  font-weight: 500;
}

ul{
  list-style-type: none;
}

/* ==============================
   FLOATING WHATSAPP BUTTON
   ============================== */
.whatsapp-float {
    position: fixed;
    width: 55px;
    height: 55px;
    bottom: 25px;
    right: 25px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 15px rgba(0,255,0,0.4);
    z-index: 99999;
    transition: 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.12);
    background-color: #1ebe5c;
}

.btn{
  font-size: 15px;
  background-color: var(--second-color);
  color: var(--bg-color);
  border: none;
  padding: 10px 24px;
  border-radius: 30px;
  cursor: pointer;
  transition: .3s ease-in-out;
}

nav .btn {
    position: relative;
    top: -6px;
}

.btn:hover{
  opacity: .85;
}

/* ================================
   FLOATING CALL ICON + MENU
   ================================ */
.call-container {
    position: fixed;
    top: 14px;
    right: 25px;
    z-index: 99999;
}

.call-icon {
    width: 40px;
    height: 40px;
    background: #ff0000;
    color: #000;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 19px;
    cursor: pointer;
    transition: .3s;
}

.call-icon:hover{
    transform: scale(1.12);
}

.call-dropdown {
    position: absolute;
    top: 60px;
    right: 0;
    background: #0d0d0d;
    border: 1px solid #333;
    border-top: 2px solid #ff0000;
    border-radius: 6px;
    padding: 15px 18px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: .35s;
}

.call-container:hover .call-dropdown{
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.call-option{
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  font-size: 14px;
  transition: .3s;
}

.call-option i{
  color: #ff0000;
}

.call-option:hover{
    color: #ff0000;
}

/* ============================
   HERO SECTION
   ============================ */

#page1{
    height: 100vh;
    width: 100%;
    padding: 0 8vw;
    padding-top: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-container{
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 40px;
}

.hero{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
}

.hero-left{
  flex: 1;
}

.hero-left h1{
  font-size: clamp(2.5rem, 5vw, 6rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 25px;
}

.hero-left h1 span{
  color: var(--second-color);
  text-shadow: 0 0 18px rgba(255,0,0,0.6);
}

.hero-left p{
  max-width: 600px;
  line-height: 1.6;
  text-align: justify;
  margin-bottom: 25px;
}

.hero-buttons{
  display: flex;
  gap: 20px;
}

.hero-btn-primary{
  background: var(--second-color);
  color: #000;
  padding: 14px 32px;
  border-radius: 30px;
}

.hero-btn-secondary{
  background: transparent;
  border: 2px solid var(--second-color);
  color: white;
  padding: 14px 32px;
  border-radius: 30px;
  transition: .3s;
}

.hero-btn-secondary:hover{
  background: var(--second-color);
  color: #000;
}

.hero-right img{
  width: 100%;
  max-width: 500px;
  animation: float 4s ease-in-out infinite;
  filter: drop-shadow(0 0 25px rgba(255,0,0,0.3));
}

@keyframes float{
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@media(max-width: 900px){
  .hero{ flex-direction: column; text-align: center; }
  .hero-buttons{ justify-content: center; }
  .hero-right img{ max-width: 360px; }
}

/* ===============================
   INTRO SECTION
   =============================== */
.va-intro{
  padding: 70px 6vw;
}

.va-container{
  max-width: 1200px;
  margin: 0 auto;
}

.va-content{
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.va-left, .va-right{
  flex: 0 0 48%;
}

.va-left img{
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 40px rgba(255,0,0,0.18);
}

.va-right h2{
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 18px;
}

.va-right h2 span{
  color: var(--second-color);
}

.va-right p{
  color: #ddd;
  line-height: 1.7;
}

@media(max-width:900px){
  .va-content{ flex-direction: column; }
}

/* ===============================
   SERVICES
   =============================== */

.va-services{
  padding: 90px 8vw;
  text-align: center;
}

.va-services-title{
  font-size: 2.6rem;
  font-weight: 800;
}

.va-services-title span{
  color: var(--second-color);
}

.va-services-subtitle{
  color: #ccc;
  margin-bottom: 50px;
}

.va-services-grid{
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 35px;
}

.va-service-card{
  background: #111;
  padding: 35px 25px;
  border-radius: 18px;
  border: 1px solid #222;
  transition: .3s;
}

.va-service-card i{
  font-size: 2.8rem;
  color: var(--second-color);
  margin-bottom: 15px;
}

.va-service-card:hover{
  transform: translateY(-8px);
  border-color: var(--second-color);
  box-shadow: 0 0 25px rgba(255,0,0,.4);
}

@media(max-width:900px){
  .va-services-grid{
    grid-template-columns: repeat(2,1fr);
  }
}

@media(max-width:600px){
  .va-services-grid{
    grid-template-columns: 1fr;
  }
}

/* ===============================
   TOOLS SLIDER
   =============================== */

.va-tools{
  padding: 90px 8vw;
  text-align: center;
}

.va-tools-title{
  font-size: 2.6rem;
  font-weight: 800;
}

.va-tools-title span{
  color: var(--second-color);
}

.va-tools-slider{
  overflow: hidden;
}

.va-tools-track{
  display: flex;
  gap: 40px;
  animation: dmSlide 25s linear infinite;
}

@keyframes dmSlide{
  0%{ transform: translateX(0); }
  100%{ transform: translateX(-50%); }
}

.va-tool-box{
  background: #0d0d0d;
  min-width: 180px;
  padding: 25px 30px;
  border-radius: 12px;
  border: 1px solid #1a1a1a;
  transition: .3s;
}

.va-tool-box img{
  width: 65px;
  filter: drop-shadow(0 0 12px rgba(255,0,0,.4));
}



/* ===============================
   PROCESS SECTION
   =============================== */

.va-process{
  padding: 90px 8vw;
}

.va-process-title{
  font-size: 2.6rem;
  text-align: center;
}

.va-process-title span{
  color: var(--second-color);
}

.va-process-steps{
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(260px,1fr));
  gap: 25px;
  margin-top: 40px;
}

.step-box{
  background: #0d0d0d;
  padding: 30px;
  border-radius: 12px;
  border: 1px solid #1a1a1a;
  transition: .3s;
}

.step-box:hover{
  transform: translateY(-8px);
  border-color: var(--second-color);
}

.step-number{
  color: var(--second-color);
  font-size: 2rem;
}

/* ===============================
   FAQ
   =============================== */

.va-faq{
  padding: 90px 8vw;
}

.va-faq-title{
  font-size: 2.6rem;
  text-align: center;
}

.va-faq-title span{
  color: var(--second-color);
}

.va-faq-container{
  max-width: 900px;
  margin: 50px auto 0;
}

.va-faq-item{
  margin-bottom: 18px;
}

.va-faq-question{
  background: #0d0d0d;
  padding: 16px 20px;
  border-radius: 8px;
  border: 1px solid #1a1a1a;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  transition: .3s;
}

.va-faq-question:hover{
  border-color: var(--second-color);
}

.va-faq-answer{
  display: none;
  background: #111;
  padding: 14px 18px;
  margin-top: 6px;
  border-left: 3px solid var(--second-color);
  border-radius: 8px;
}

.va-faq-answer.open{
  display: block;
}

.va-faq-arrow{
  color: var(--second-color);
  font-size: 1.4rem;
}

/* ===============================
   FIX: TOOLS SLIDER SPACING
================================ */
.va-tools-title {
    margin-bottom: 10px;
}

.va-tools-subtitle {
    font-size: 1.1rem;
    color: #ccc;
    max-width: 750px;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 50px; /* FIXED SPACING HERE */
}

.va-tools-slider {
    margin-top: 20px; /* ADDED GAP */
    overflow: hidden;
}

/* ================
   PROCESS SUBTITLE FIX
=================== */
.va-process-subtitle {
    font-size: 1.1rem;
    color: #ccc;
    text-align: center;
    max-width: 850px;
    margin: 0 auto;
    margin-bottom: 40px;   /* SPACING FIXED */
    line-height: 1.6;
}

/* =====================
   FAQ SUBTITLE FIX
===================== */
.va-faq-subtitle {
    color: #ccc;
    font-size: 1.1rem;
    max-width: 850px;
    text-align: center;
    margin: 0 auto;
    margin-top: 10px;
    margin-bottom: 40px;  /* FIXED GAP */
    line-height: 1.6;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Poppins, sans-serif;
}

body{
    background:#000;
    color:#fff;
}

/* COLORS */
.red{ color:#ff0000; }

/* ================= NAV ================= */
.nav{
    position:fixed;
    top:0;
    width:100%;
    height:90px;
    background:#000;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:0 6vw;
    z-index:9999;
}

/* LOGO */
.logo{
    font-size:20px;
    font-weight:600;
}
.desktop-only{ display:inline; }

/* DESKTOP MENU */
.nav-menu{
    list-style:none;
    display:flex;
    gap:32px;
}
.nav-link{
    color:#fff;
    font-size:15px;
    text-decoration:none;
}
.nav-link:hover{ color:#ff0000; }

/* BUTTON */
.btn{
    background:#ff0000;
    color:#000;
    padding:10px 26px;
    border-radius:30px;
    border:none;
    cursor:pointer;
    font-weight:600;
}

/* HAMBURGER */
.mobile-menu-icon{
    display:none;
    font-size:26px;
    cursor:pointer;
}

/* ================= CALL ICON ================= */
.call-container{
    position:fixed;
    top:22px;
    right:20px;
    z-index:10000;
}
.call-icon{
    width:40px;
    height:40px;
    background:#ff0000;
    color:#000;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
}
.call-dropdown{
    position:absolute;
    top:55px;
    right:0;
    background:#0d0d0d;
    border:1px solid #222;
    padding:15px;
    border-radius:6px;
    display:none;
}
.call-container:hover .call-dropdown{
    display:block;
}
.call-title{ color:#ff0000; font-size:13px; }
.call-heading{ font-size:14px; margin:8px 0; }
.call-option{
    display:block;
    color:#fff;
    text-decoration:none;
    font-size:14px;
    margin-top:6px;
}

/* ================= MOBILE MENU ================= */
.mobile-menu{
    position:fixed;
    inset:0;
    background:#000;
    padding:35px 28px;
    display:none;
    z-index:9998;
}
.mobile-menu.active{ display:block; }

.mobile-brand{
    font-size:20px;
    font-weight:600;
}
.mobile-brand span{ color:#ff0000; }

.mobile-title{
    margin-top:30px;
    font-size:22px;
}
.mobile-title span{ color:#ff0000; }

.mobile-line{
    width:300px;
    height:3px;
    background:#ff0000;
    margin:10px 0 25px;
}

.mobile-links{
    list-style:none;
}
.mobile-links li{
    margin-bottom:22px;
}
.mobile-links a{
    color:#fff;
    text-decoration:none;
    font-size:17px;
}

.mobile-signin{
    width:100%;
    height:52px;
    margin-top:30px;
    background:#ff0000;
    color:#fff;
    border:none;
    border-radius:30px;
    font-size:16px;
    font-weight:600;
}

/* ================= RESPONSIVE ================= */
@media(max-width:900px){
    .nav-menu,
    .desktop-btn,
    .desktop-only{
        display:none;
    }
    .mobile-menu-icon{
        display:block;
    }
}

@media(min-width:901px){
    .mobile-menu,
    .mobile-menu-icon{
        display:none !important;
    }
}

/* RED LINE UNDER DarkSpaceSecurity */
.brand-line-mobile{
    width: 180px;
    height: 3px;
    background: #ff0000;
    margin: 8px 0 28px;
}

/* =========================================
   DIGITAL MARKETING — HERO SECTION
========================================= */

#page1{
    min-height: 100vh;
    padding-top: var(--nav-height, 110px); /* prevents navbar overlap */
    display: flex;
    align-items: center;
    background: #000;
}

/* CONTAINER */
.hero-container{
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 8vw;
}

/* LAYOUT */
.hero{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

/* LEFT CONTENT */
.hero-left{
    flex: 1;
    max-width: 640px;
}

.hero-left h1{
    font-size: clamp(2.6rem, 5vw, 5.5rem);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 22px;
}

.hero-left h1 span{
    color: #ff0000;
    text-shadow: 0 0 18px rgba(255,0,0,0.6);
}

.hero-left p{
    font-size: 1.05rem;
    line-height: 1.75;
    color: #ddd;
    margin-bottom: 34px;
    text-align: justify;
}

/* BUTTONS */
.hero-buttons{
    display: flex;
    gap: 20px;
}

.hero-btn-primary,
.hero-btn-secondary{
    padding: 14px 34px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    transition: 0.3s ease;
    cursor: pointer;
}

/* PRIMARY */
.hero-btn-primary{
    background: #ff0000;
    color: #000;
    box-shadow: 0 0 20px rgba(255,0,0,0.45);
}

/* SECONDARY */
.hero-btn-secondary{
    background: transparent;
    color: #fff;
    border: 2px solid #ff0000;
}

.hero-btn-primary:hover,
.hero-btn-secondary:hover{
    transform: translateY(-3px);
    opacity: 0.9;
}

/* RIGHT IMAGE */
.hero-right{
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero-right img{
    width: 100%;
    max-width: 520px;
    filter: drop-shadow(0 0 28px rgba(255,0,0,0.35));
}

/* ===============================
   TABLET (≤ 900px)
================================ */
@media (max-width: 900px){

    #page1{
        padding-top: calc(var(--nav-height, 110px) + 30px);
        min-height: auto;
    }

    .hero{
        flex-direction: column;
        gap: 42px;
        text-align: center;
    }

    /* IMAGE FIRST */
    .hero-right{
        order: 1;
    }

    /* TEXT SECOND */
    .hero-left{
        order: 2;
        max-width: 100%;
    }

    .hero-left p{
        max-width: 95%;
        margin: 0 auto 30px;
        text-align: justify;
    }

    .hero-buttons{
        justify-content: center;
        flex-wrap: wrap;
    }
}

/* ===============================
   MOBILE (≤ 600px)
================================ */
@media (max-width: 600px){

    .hero-left h1{
        font-size: 2.1rem;
    }

    .hero-buttons{
        flex-direction: column;
        gap: 14px;
        align-items: center;
    }

    .hero-btn-primary,
    .hero-btn-secondary{
        width: 100%;
        max-width: 320px;
        text-align: center;
    }

    .hero-right img{
        max-width: 320px;
    }
}

/* =========================================
   DIGITAL MARKETING — INTRO SECTION
========================================= */

.va-intro{
    width: 100%;
    padding: 100px 8vw;
    background: #000;
}

/* CONTAINER */
.va-container{
    max-width: 1200px;
    margin: 0 auto;
}

/* LAYOUT */
.va-content{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

/* LEFT IMAGE */
.va-left{
    flex: 1;
}

.va-left img{
    width: 100%;
    max-width: 520px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(255,0,0,0.25);
}

/* RIGHT CONTENT */
.va-right{
    flex: 1;
    max-width: 640px;
}

/* TITLE */
.va-right h2{
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 22px;
    line-height: 1.25;
}

.va-right h2 span{
    color: #ff0000;
    text-shadow: 0 0 14px rgba(255,0,0,0.6);
}

/* TEXT */
.va-right p{
    font-size: 1rem;
    line-height: 1.75;
    color: #ccc;
    margin-bottom: 18px;
    text-align: justify;
}

/* ===============================
   TABLET (≤ 900px)
================================ */
@media (max-width: 900px){

    .va-intro{
        padding: 80px 20px;
    }

    .va-content{
        flex-direction: column;
        gap: 42px;
        text-align: center;
    }

    /* IMAGE FIRST */
    .va-left{
        order: 1;
        display: flex;
        justify-content: center;
    }

    /* TEXT SECOND */
    .va-right{
        order: 2;
        max-width: 100%;
    }

    .va-right h2{
        text-align: center;
    }

    .va-right p{
        max-width: 95%;
        margin: 0 auto 16px;
        text-align: justify;
    }
}

/* ===============================
   MOBILE (≤ 480px)
================================ */
@media (max-width: 480px){

    .va-right h2{
        font-size: 1.9rem;
    }

    .va-left img{
        max-width: 320px;
        border-radius: 14px;
    }
}

/* =========================================
   DIGITAL MARKETING — SERVICES
========================================= */

.va-services{
    width: 100%;
    padding: 100px 8vw;
    background: #000;
    text-align: center;
}

/* TITLE */
.va-services-title{
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 800;
    margin-bottom: 14px;
}

.va-services-title span{
    color: #ff0000;
    text-shadow: 0 0 14px rgba(255,0,0,0.6);
}

/* SUBTITLE */
.va-services-subtitle{
    max-width: 900px;
    margin: 0 auto 60px;
    color: #ccc;
    line-height: 1.7;
}

/* GRID */
.va-services-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* CARD */
.va-service-card{
    background: #0d0d0d;
    border: 1px solid #1a1a1a;
    padding: 40px 30px;
    border-radius: 16px;
    transition: 0.35s ease;
    text-align: left;
}

.va-service-card:hover{
    transform: translateY(-10px);
    border-color: #ff0000;
    box-shadow: 0 0 28px rgba(255,0,0,0.35);
}

/* ICON */
.va-service-card i{
    font-size: 2.8rem;
    color: #ff0000;
    margin-bottom: 18px;
    display: inline-block;
}

/* TITLE */
.va-service-card h3{
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #fff;
}

/* TEXT */
.va-service-card p{
    font-size: 0.95rem;
    color: #ccc;
    line-height: 1.6;
    text-align: justify;
}

/* ===============================
   LARGE TABLET (≤ 1100px)
================================ */
@media (max-width: 1100px){

    .va-services-grid{
        grid-template-columns: repeat(2, 1fr);
        gap: 26px;
    }

    .va-services-subtitle{
        margin-bottom: 50px;
    }
}

/* ===============================
   TABLET (≤ 900px)
================================ */
@media (max-width: 900px){

    .va-services{
        padding: 80px 20px;
    }

    .va-services-title{
        font-size: 2rem;
    }
}

/* ===============================
   MOBILE (≤ 600px)
================================ */
@media (max-width: 600px){

    .va-services-grid{
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .va-services-subtitle{
        font-size: 0.95rem;
        text-align: justify;
        margin-bottom: 45px;
    }

    .va-service-card{
        padding: 34px 24px;
        text-align: center;
    }

    .va-service-card p{
        text-align: justify;
    }
}

/* =========================================
   DIGITAL MARKETING — PROCESS SECTION
========================================= */

.va-process{
    width: 100%;
    padding: 100px 8vw;
    background: #000;
    text-align: center;
}

/* TITLE */
.va-process-title{
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 800;
    margin-bottom: 14px;
}

.va-process-title span{
    color: #ff0000;
    text-shadow: 0 0 14px rgba(255,0,0,0.6);
}

/* SUBTITLE */
.va-process-subtitle{
    max-width: 900px;
    margin: 0 auto 60px;
    color: #ccc;
    line-height: 1.7;
}

/* GRID */
.va-process-steps{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* STEP CARD */
.va-process .step-box{
    background: #0d0d0d;
    border: 1px solid #1a1a1a;
    padding: 38px 30px;
    border-radius: 16px;
    transition: 0.35s ease;
    text-align: left;
}

.va-process .step-box:hover{
    transform: translateY(-10px);
    border-color: #ff0000;
    box-shadow: 0 0 28px rgba(255,0,0,0.35);
}

/* STEP NUMBER */
.va-process .step-number{
    display: inline-block;
    font-size: 2rem;
    font-weight: 800;
    color: #ff0000;
    margin-bottom: 14px;
}

/* STEP TITLE */
.va-process .step-box h3{
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #fff;
}

/* STEP TEXT */
.va-process .step-box p{
    font-size: 0.95rem;
    color: #ccc;
    line-height: 1.6;
    text-align: justify;
}

/* ===============================
   LARGE TABLET (≤ 1100px)
================================ */
@media (max-width: 1100px){

    .va-process-steps{
        grid-template-columns: repeat(2, 1fr);
        gap: 26px;
    }
}

/* ===============================
   TABLET (≤ 900px)
================================ */
@media (max-width: 900px){

    .va-process{
        padding: 80px 20px;
    }

    .va-process-title{
        font-size: 2rem;
    }

    .va-process-subtitle{
        margin-bottom: 50px;
    }

    .va-process-steps{
        grid-template-columns: repeat(2, 1fr);
        gap: 22px;
    }

    .va-process .step-box{
        text-align: center;
    }
}

/* ===============================
   MOBILE (≤ 600px)
================================ */
@media (max-width: 600px){

    .va-process-steps{
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .va-process-title{
        font-size: 1.8rem;
    }

    .va-process-subtitle{
        font-size: 0.95rem;
        text-align: justify;
        margin-bottom: 45px;
    }

    .va-process .step-box{
        padding: 32px 24px;
    }

    .va-process .step-number{
        font-size: 1.8rem;
    }
}

/* =========================================
   DIGITAL MARKETING — FAQ SECTION
========================================= */

.va-faq{
    width: 100%;
    padding: 100px 8vw;
    background: #000;
}

/* TITLE */
.va-faq-title{
    text-align: center;
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 800;
    margin-bottom: 12px;
}

.va-faq-title span{
    color: #ff0000;
    text-shadow: 0 0 14px rgba(255,0,0,0.6);
}

/* SUBTITLE */
.va-faq-subtitle{
    text-align: center;
    max-width: 900px;
    margin: 0 auto 55px;
    color: #ccc;
    line-height: 1.7;
}

/* CONTAINER */
.va-faq-container{
    max-width: 900px;
    margin: 0 auto;
}

/* FAQ ITEM */
.va-faq-item{
    margin-bottom: 18px;
}

/* QUESTION */
.va-faq-question{
    background: #0d0d0d;
    padding: 18px 22px;
    border-radius: 10px;
    border: 1px solid #1a1a1a;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    transition: 0.3s ease;
}

.va-faq-question:hover{
    border-color: #ff0000;
}

/* ARROW */
.va-faq-arrow{
    font-size: 1.4rem;
    color: #ff0000;
    font-weight: 600;
    margin-left: 12px;
}

/* ANSWER */
.va-faq-answer{
    display: none;
    background: #111;
    padding: 16px 22px;
    margin-top: 6px;
    border-radius: 10px;
    border-left: 3px solid #ff0000;
    color: #ccc;
    line-height: 1.65;
}

/* OPEN STATE */
.va-faq-answer.open{
    display: block;
}

/* ===============================
   TABLET (≤ 900px)
================================ */
@media (max-width: 900px){

    .va-faq{
        padding: 80px 20px;
    }

    .va-faq-title{
        font-size: 2rem;
    }

    .va-faq-subtitle{
        margin-bottom: 45px;
    }
}

/* ===============================
   MOBILE (≤ 480px)
================================ */
@media (max-width: 480px){

    .va-faq-question{
        font-size: 0.95rem;
        padding: 16px 18px;
    }

    .va-faq-answer{
        font-size: 0.95rem;
        padding: 14px 18px;
        text-align: justify;
    }

    .va-faq-arrow{
        font-size: 1.2rem;
    }
}

/* UNIVERSAL BUY NOW BUTTON */
.buy-now-btn {
    background: linear-gradient(135deg, #ff0000, #cc0000);
    color: #fff;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    padding: 12px 22px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s ease;
}

.buy-now-btn i {
    font-size: 14px;
}

/* Hover */
.buy-now-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255,0,0,0.3);
}

/* Desktop */
.desktop-btn {
    min-width: 140px;
}

/* Mobile */
.mobile-btn {
    text-align: center;
    font-size: 15px;
    padding: 14px;
}

/* Prevent link styling issues */
.buy-now-link {
    text-decoration: none;
}

/* =========================================
   MOBILE FIX — BUY NOW BUTTON (DIGITAL MARKETING)
========================================= */
@media (max-width: 900px) {

    /* Hide Buy Now from navbar */
    .nav .buy-now-link {
        display: none !important;
    }

    /* Show Buy Now only inside mobile menu */
    .mobile-menu .buy-now-link {
        display: block !important;
        margin-top: 24px;
    }

    /* Proper button alignment */
    .mobile-menu .buy-now-btn {
        width: 100%;
        display: flex;
        justify-content: center;   /* horizontal */
        align-items: center;       /* vertical */
        padding: 16px 0;
        border-radius: 40px;
        font-size: 16px;
        font-weight: 600;
        text-align: center;
    }

    .mobile-menu .buy-now-btn i {
        margin-left: 8px;
        font-size: 15px;
    }
}
