/*==================================================
ORDER PAGE
HAHA Multimedia
==================================================*/

.order-hero{

position:relative;

padding:150px 5% 100px;

overflow:hidden;

}

.order-hero::before{

content:"";

position:absolute;

inset:0;

background:

radial-gradient(circle at 15% 20%,rgba(0,212,255,.10),transparent 30%),

radial-gradient(circle at 85% 25%,rgba(123,61,255,.12),transparent 35%),

radial-gradient(circle at 50% 100%,rgba(255,45,149,.08),transparent 45%);

pointer-events:none;

}

.order-hero .container{

position:relative;

z-index:2;

}

.hero-content{

max-width:900px;

margin:auto;

text-align:center;

}

.hero-badge{

display:inline-flex;

padding:12px 30px;

border-radius:50px;

background:rgba(255,255,255,.05);

border:1px solid rgba(255,255,255,.08);

backdrop-filter:blur(20px);

font-size:14px;

font-weight:800;

letter-spacing:2px;

margin-bottom:25px;

}

.order-hero h1{

font-size:clamp(48px,6vw,72px);

font-weight:900;

margin-bottom:20px;

}

.order-hero h1 span{

background:linear-gradient(

90deg,

var(--blue),

var(--purple),

var(--pink)

);

-webkit-background-clip:text;

-webkit-text-fill-color:transparent;

}

.order-hero p{

font-size:20px;

line-height:2;

color:#d6d6d6;

max-width:760px;

margin:auto;

}





/*==================================================
ORDER SECTION
==================================================*/

.order-section{

padding:100px 5%;

}

.order-grid{

display:grid;

grid-template-columns:1.4fr .9fr;

gap:40px;

align-items:start;

}





/*==================================================
ORDER FORM
==================================================*/

.order-form{

background:rgba(255,255,255,.05);

border:1px solid rgba(255,255,255,.08);

border-radius:30px;

padding:45px;

backdrop-filter:blur(20px);

box-shadow:0 20px 50px rgba(0,0,0,.20);

}

.order-form h2{

font-size:36px;

font-weight:900;

margin-bottom:10px;

}

.form-subtitle{

font-size:17px;

color:#bfbfbf;

margin-bottom:35px;

}

.form-row{

display:grid;

grid-template-columns:1fr 1fr;

gap:20px;

margin-bottom:20px;

}

.form-group{

margin-bottom:22px;

}

.form-group label{

display:block;

font-size:15px;

font-weight:700;

margin-bottom:10px;

}

.form-group input,

.form-group select,

.form-group textarea{

width:100%;

padding:16px 18px;

background:rgba(255,255,255,.05);

border:1px solid rgba(255,255,255,.08);

border-radius:16px;

color:#fff;

font-size:16px;

font-family:"Cairo",sans-serif;

transition:.35s;

}

.form-group input:focus,

.form-group select:focus,

.form-group textarea:focus{

outline:none;

border-color:var(--blue);

box-shadow:0 0 20px rgba(0,212,255,.20);

}

textarea{

resize:vertical;

min-height:130px;

}
/*==================================================
PLAN SELECTOR
==================================================*/

.plan-selector{

display:grid;

grid-template-columns:repeat(2,1fr);

gap:22px;

margin-top:15px;

}

.plan-card{

position:relative;

}

.plan-card input{

display:none;

}

.plan-card label{

display:flex;

flex-direction:column;

justify-content:center;

align-items:center;

padding:30px 20px;

border-radius:24px;

cursor:pointer;

background:rgba(255,255,255,.04);

border:2px solid rgba(255,255,255,.08);

transition:.35s;

min-height:180px;

overflow:hidden;

position:relative;

}

.plan-card label::before{

content:"";

position:absolute;

top:-120%;

left:-50%;

width:70%;

height:300%;

background:linear-gradient(

90deg,

transparent,

rgba(255,255,255,.15),

transparent

);

transform:rotate(25deg);

transition:.8s;

}

.plan-card:hover label::before{

left:170%;

}

.plan-card:hover label{

transform:translateY(-8px);

border-color:rgba(0,212,255,.35);

box-shadow:0 20px 45px rgba(0,212,255,.15);

}

.plan-card input:checked + label{

background:linear-gradient(

180deg,

rgba(0,212,255,.15),

rgba(123,61,255,.15)

);

border-color:var(--blue);

box-shadow:0 0 35px rgba(0,212,255,.25);

}

.plan-title{

font-size:30px;

font-weight:900;

margin-bottom:12px;

color:#fff;

}

.plan-price{

font-size:40px;

font-weight:900;

background:linear-gradient(

90deg,

var(--blue),

var(--purple)

);

-webkit-background-clip:text;

-webkit-text-fill-color:transparent;

margin-bottom:10px;

}

.plan-price::after{

content:" USD";

font-size:18px;

-webkit-text-fill-color:#bdbdbd;

}

.plan-card small{

font-size:14px;

color:#bfbfbf;

margin-top:8px;

}

.plan-card.popular span{

position:absolute;

top:15px;

left:15px;

padding:8px 18px;

border-radius:30px;

background:linear-gradient(

90deg,

#ff9800,

#ff2d95

);

color:#fff;

font-size:12px;

font-weight:800;

z-index:5;

box-shadow:0 0 20px rgba(255,152,0,.35);

}





/*==================================================
ORDER BUTTON
==================================================*/

.btn-order{

width:100%;

height:60px;

margin-top:20px;

border:none;

border-radius:50px;

background:linear-gradient(

90deg,

var(--blue),

var(--purple)

);

color:#fff;

font-size:20px;

font-weight:800;

cursor:pointer;

transition:.35s;

box-shadow:0 15px 35px rgba(0,212,255,.25);

}

.btn-order:hover{

transform:translateY(-5px);

box-shadow:0 20px 45px rgba(0,212,255,.35);

}
/*==================================================
ORDER SUMMARY
==================================================*/

.order-summary{

position:sticky;

top:140px;

background:rgba(255,255,255,.05);

border:1px solid rgba(255,255,255,.08);

border-radius:30px;

padding:35px;

backdrop-filter:blur(20px);

box-shadow:0 20px 50px rgba(0,0,0,.20);

}

.order-summary h2{

font-size:32px;

font-weight:900;

margin-bottom:30px;

text-align:center;

}





/*==================================================
SUMMARY CARD
==================================================*/

.summary-card{

background:rgba(255,255,255,.04);

border:1px solid rgba(255,255,255,.08);

border-radius:22px;

padding:25px;

margin-bottom:25px;

}

.summary-item{

display:flex;

justify-content:space-between;

align-items:center;

padding:15px 0;

border-bottom:1px solid rgba(255,255,255,.08);

}

.summary-item:last-child{

border-bottom:none;

}

.summary-item span{

color:#bfbfbf;

font-size:16px;

}

.summary-item strong{

font-size:18px;

font-weight:800;

color:#fff;

}





/*==================================================
PRICE
==================================================*/

#summaryPrice{

font-size:34px;

font-weight:900;

background:linear-gradient(

90deg,

var(--blue),

var(--purple)

);

-webkit-background-clip:text;

-webkit-text-fill-color:transparent;

}





/*==================================================
FEATURES
==================================================*/

.summary-features{

margin-top:25px;

padding:25px;

border-radius:22px;

background:rgba(255,255,255,.04);

border:1px solid rgba(255,255,255,.08);

}

.summary-features h3{

font-size:22px;

margin-bottom:18px;

}

.summary-features ul{

list-style:none;

padding:0;

margin:0;

display:flex;

flex-direction:column;

gap:14px;

}

.summary-features li{

font-size:16px;

color:#d7d7d7;

padding-right:28px;

position:relative;

line-height:1.8;

}

.summary-features li::before{

content:"✔";

position:absolute;

right:0;

color:var(--green);

font-weight:bold;

}





/*==================================================
PAYMENT BOX
==================================================*/

.payment-box{

margin-top:30px;

padding:25px;

border-radius:22px;

background:rgba(255,255,255,.04);

border:1px solid rgba(255,255,255,.08);

}

.payment-box h3{

font-size:22px;

margin-bottom:20px;

}





.payment-grid{

display:grid;

grid-template-columns:repeat(2,1fr);

gap:15px;

}





.payment-item{

display:flex;

flex-direction:column;

justify-content:center;

align-items:center;

padding:18px;

border-radius:18px;

background:rgba(255,255,255,.05);

border:1px solid rgba(255,255,255,.08);

font-size:28px;

transition:.35s;

cursor:pointer;

}

.payment-item:hover{

transform:translateY(-6px);

border-color:var(--blue);

box-shadow:0 0 25px rgba(0,212,255,.20);

}

.payment-item span{

margin-top:8px;

font-size:15px;

font-weight:700;

color:#fff;

}





/*==================================================
SECURITY BOX
==================================================*/

.security-box{

display:flex;

align-items:center;

gap:18px;

margin-top:30px;

padding:22px;

border-radius:22px;

background:linear-gradient(

135deg,

rgba(0,212,255,.10),

rgba(123,61,255,.10)

);

border:1px solid rgba(0,212,255,.15);

}

.security-box>div:first-child{

font-size:42px;

}

.security-box h4{

font-size:20px;

margin-bottom:6px;

}

.security-box p{

font-size:15px;

color:#cfcfcf;

line-height:1.8;

}
/*==================================================
WHY ORDER
==================================================*/

.why-order{

padding:120px 5%;

position:relative;

overflow:hidden;

}

.features-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:30px;

margin-top:60px;

}

.feature-card{

background:rgba(255,255,255,.05);

border:1px solid rgba(255,255,255,.08);

border-radius:28px;

padding:40px 30px;

text-align:center;

backdrop-filter:blur(18px);

transition:.35s;

}

.feature-card:hover{

transform:translateY(-10px);

border-color:var(--blue);

box-shadow:0 0 35px rgba(0,212,255,.20);

}

.feature-icon{

width:90px;

height:90px;

margin:auto;

margin-bottom:25px;

display:flex;

justify-content:center;

align-items:center;

border-radius:50%;

font-size:42px;

background:linear-gradient(135deg,var(--blue),var(--purple));

box-shadow:0 0 25px rgba(0,212,255,.25);

}

.feature-card h3{

font-size:24px;

margin-bottom:15px;

font-weight:900;

}

.feature-card p{

font-size:16px;

line-height:1.9;

color:#d6d6d6;

}





/*==================================================
SECTION EFFECTS
==================================================*/

.order-hero,
.order-section,
.why-order{

position:relative;

overflow:hidden;

}

.order-hero::after,
.order-section::after,
.why-order::after{

content:"";

position:absolute;

width:420px;

height:420px;

border-radius:50%;

background:

radial-gradient(circle,

rgba(0,212,255,.08),

transparent 70%);

filter:blur(45px);

pointer-events:none;

z-index:0;

}

.order-hero::after{

top:-180px;

left:-150px;

}

.order-section::after{

bottom:-180px;

right:-180px;

}

.why-order::after{

top:20%;

left:-180px;

}

.order-hero .container,
.order-section .container,
.why-order .container{

position:relative;

z-index:2;

}





/*==================================================
ANIMATION
==================================================*/

.order-form,
.order-summary,
.feature-card,
.plan-card{

animation:fadeUp .8s ease both;

}

.plan-card:nth-child(2){

animation-delay:.1s;

}

.plan-card:nth-child(3){

animation-delay:.2s;

}

.plan-card:nth-child(4){

animation-delay:.3s;

}

.feature-card:nth-child(2){

animation-delay:.1s;

}

.feature-card:nth-child(3){

animation-delay:.2s;

}

.feature-card:nth-child(4){

animation-delay:.3s;

}





/*==================================================
RESPONSIVE
==================================================*/

@media(max-width:1200px){

.features-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:992px){

.order-grid{

grid-template-columns:1fr;

}

.order-summary{

position:relative;

top:0;

}

}

@media(max-width:768px){

.order-hero{

padding:100px 20px 80px;

}

.order-hero h1{

font-size:42px;

}

.form-row{

grid-template-columns:1fr;

}

.plan-selector{

grid-template-columns:1fr;

}

.features-grid{

grid-template-columns:1fr;

}

.order-form{

padding:30px 20px;

}

.order-summary{

padding:30px 20px;

}

}

@media(max-width:480px){

.order-hero{

padding:80px 15px 60px;

}

.hero-badge{

font-size:12px;

padding:10px 20px;

}

.order-hero h1{

font-size:30px;

}

.order-hero p{

font-size:15px;

line-height:1.8;

}

.order-form h2,

.order-summary h2{

font-size:28px;

}

.plan-title{

font-size:24px;

}

.plan-price{

font-size:32px;

}

.feature-card{

padding:30px 20px;

}

.feature-icon{

width:75px;

height:75px;

font-size:34px;

}

.feature-card h3{

font-size:22px;

}

.feature-card p{

font-size:15px;

}

}





/*==================================================
END ORDER PAGE
==================================================*/