/* =====================================
   GLOBAL BASE STYLES
===================================== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

:root{
  --bg-color: #000000;
  --second-color: #FF0000;
}

body{
  background-color: #000;
  color: #fff;
}

a{
  text-decoration: none;
  color: white;
  font-weight: 500;
}

ul{
  list-style: none;
}

/* =====================================
   WHATSAPP FLOAT BUTTON
===================================== */
.whatsapp-float {
    position: fixed;
    width: 55px;
    height: 55px;
    bottom: 25px;
    right: 25px;
    background-color: #25D366;
    border-radius: 50%;
    font-size: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    box-shadow: 0 0 15px rgba(0,255,0,0.4);
    transition: .3s;
    z-index: 99999;
}

.whatsapp-float:hover {
    transform: scale(1.12);
}

/* =====================================
   CALL ICON
===================================== */
.call-container{
    position: fixed;
    top: 14px;
    right: 25px;
    z-index: 99999;
}

.call-icon{
    width: 40px;
    height: 40px;
    background: red;
    color: black;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: .3s;
}

.call-icon:hover{
    transform: scale(1.12);
}

.call-dropdown{
    position: absolute;
    background: #0d0d0d;
    padding: 15px 18px;
    border-radius: 6px;
    border-top: 2px solid red;
    border: 1px solid #333;
    top: 60px;
    right: 0;
    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;
    gap: 10px;
    color: white;
    padding: 6px 0;
}

.call-option i{
    color: red;
}

.call-option:hover{
    color: red;
}

/* =====================================
   HERO SECTION
===================================== */
#page1{
    height: 100vh;
    padding: 80px 8vw 0 8vw;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-container{
    max-width: 1500px;
    width: 100%;
}

.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;
    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.7;
    color: #ddd;
    text-align: justify;
    margin-bottom: 25px;
}

.hero-buttons{
    display: flex;
    gap: 20px;
}

.hero-btn-primary{
    background: red;
    color: black;
    padding: 14px 32px;
    border-radius: 30px;
}

.hero-btn-secondary{
    border: 2px solid red;
    background: transparent;
    padding: 14px 32px;
    color: white;
    border-radius: 30px;
    transition: .3s;
}

.hero-btn-secondary:hover{
    background: red;
    color: black;
}

.hero-right img{
    width: 100%;
    max-width: 520px;
    animation: floatImg 4s ease-in-out infinite;
    filter: drop-shadow(0 0 25px rgba(255,0,0,.3));
}

@keyframes floatImg{
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

@media(max-width:900px){
    .hero{
        flex-direction: column;
        text-align: center;
    }
}

/* =====================================
   INTRO SECTION
===================================== */
.va-intro{
    padding: 80px 8vw;
}

.va-container{
    max-width: 1200px;
    margin: 0 auto;
}

.va-content{
    display: flex;
    justify-content: space-between;
    align-items: center;
    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,.18);
}

.va-right h2{
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 18px;
}

.va-right h2 span{
    color: var(--second-color);
}

.va-right p{
    color: #ddd;
    line-height: 1.7;
    margin-bottom: 14px;
}

@media(max-width:900px){
    .va-content{ flex-direction: column; }
}

/* =====================================
   SERVICES SECTION
===================================== */
.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;
    border: 1px solid #222;
    padding: 35px 25px;
    border-radius: 18px;
    transition: .3s;
}

.va-service-card i{
    font-size: 2.8rem;
    color: var(--second-color);
    margin-bottom: 15px;
}

.va-service-card h3{
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.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-subtitle{
    max-width: 750px;
    margin: 0 auto 50px auto;
    color: #ccc;
}

.va-tools-slider{
    overflow: hidden;
    margin-top: 20px;
}

.va-tools-track{
    display: flex;
    gap: 40px;
    animation: devopsSlide 25s linear infinite;
}

@keyframes devopsSlide{
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.va-tool-box{
    background: #0d0d0d;
    padding: 25px 30px;
    min-width: 180px;
    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
===================================== */
.va-process{
    padding: 90px 8vw;
    text-align: center;
}

.va-process-title{
    font-size: 2.6rem;
    font-weight: 800;
}

.va-process-title span{
    color: red;
}

.va-process-subtitle{
    max-width: 850px;
    margin: 0 auto 40px auto;
    color: #ccc;
    line-height: 1.6;
}

.va-process-steps{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
    gap: 25px;
}

.step-box{
    background: #0d0d0d;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #1a1a1a;
    transition: .3s;
}

.step-box:hover{
    transform: translateY(-8px);
    border-color: red;
}

.step-number{
    font-size: 2rem;
    font-weight: 700;
    color: red;
    margin-bottom: 10px;
}

/* =====================================
   FAQ SECTION
===================================== */
.va-faq{
    padding: 90px 8vw;
}

.va-faq-title{
    font-size: 2.6rem;
    font-weight: 800;
    text-align: center;
}

.va-faq-title span{
    color: var(--second-color);
}

.va-faq-subtitle{
    max-width: 850px;
    text-align: center;
    margin: 10px auto 40px auto;
    color: #ccc;
}

.va-faq-container{
    max-width: 900px;
    margin: 0 auto;
}

.va-faq-item{
    margin-bottom: 18px;
}

.va-faq-question{
    background: #0d0d0d;
    border: 1px solid #1a1a1a;
    padding: 16px 20px;
    border-radius: 8px;
    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;
    border-left: 3px solid red;
    border-radius: 8px;
    margin-top: 6px;
}

.va-faq-answer.open{
    display: block;
}

.va-faq-arrow{
    font-size: 1.4rem;
    color: red;
    font-weight: bold;
}

/* 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{
    color: #fff;
    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;
}
.nav-link:hover{ color:#ff0000; }

/* BUTTON */
.btn{
    background:#ff0000;
    color:#000;
    padding:10px 26px;
    border-radius:30px;
    border:none;
    font-weight:600;
    cursor:pointer;
}

/* HAMBURGER */
.mobile-menu-icon{
    display:none;
    font-size:26px;
    color:#fff;
    cursor:pointer;
}

/* ================= 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 */
.mobile-brand{
    font-size: 20px;
    font-weight: 600;
    color: #fff;
}
.mobile-brand span{ color:#ff0000; }

.brand-line-mobile{
    width: 180px;
    height: 3px;
    background: #ff0000;
    margin: 8px 0 28px;
}

/* MOBILE TITLE */
.mobile-title{
    font-size: 22px;
    font-weight: 600;
    color:#fff;
}
.mobile-title span{ color:#ff0000; }

.mobile-line{
    width: 190px;
    height: 3px;
    background:#ff0000;
    margin:10px 0 25px;
}

/* LINKS */
.mobile-links{
    list-style:none;
}
.mobile-links li{
    margin-bottom:22px;
}
.mobile-links a{
    color:#fff;
    font-size:17px;
}

/* SIGN IN */
.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;
    }
}

/* =========================================
   DEVOPS — 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;
    }
}

/* =========================================
   DEVOPS — 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;
    }
}

/* =========================================
   DEVOPS — SERVICES SECTION
========================================= */

.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;
}

/* CARD TITLE */
.va-service-card h3{
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #fff;
}

/* CARD 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;
    }
}

/* =========================================
   DEVOPS — 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;
    }
}

/* =========================================
   DEVOPS — 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 (DEVOPS)
========================================= */
@media (max-width: 900px) {

    /* Hide Buy Now from top navbar */
    .nav .buy-now-link {
        display: none !important;
    }

    /* Show Buy Now inside mobile menu */
    .mobile-menu .buy-now-link {
        display: block !important;
        margin-top: 24px;
    }

    /* Full-width, centered CTA button */
    .mobile-menu .buy-now-btn {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 16px 0;
        font-size: 16px;
        font-weight: 600;
        border-radius: 40px;
        text-align: center;
    }

    .mobile-menu .buy-now-btn i {
        margin-left: 8px;
        font-size: 15px;
    }
}

