/* ===================================
   APPLY PAN & TAN PREMIUM PAGE
=================================== */

body{

    background:#f4f7fc;

    overflow-x:hidden;
}

/* HERO SECTION */

.gst-hero{

    height:90vh;

    background:
    linear-gradient(
    rgba(0,0,0,0.55),
    rgba(0,0,0,0.65)
    ),

    url("https://images.unsplash.com/photo-1554224155-6726b3ff858f?q=80&w=1600");

    background-size:cover;

    background-position:center;

    display:flex;

    justify-content:center;

    align-items:center;

    text-align:center;

    position:relative;

    overflow:hidden;
}

/* ANIMATED GLOW */

.gst-hero::before{

    content:"";

    position:absolute;

    width:500px;
    height:500px;

    background:
    rgba(0,255,200,0.12);

    border-radius:50%;

    top:-120px;
    left:-120px;

    filter:blur(80px);

    animation:glowMove 8s infinite alternate;
}

.gst-hero::after{

    content:"";

    position:absolute;

    width:400px;
    height:400px;

    background:
    rgba(0,102,255,0.15);

    border-radius:50%;

    bottom:-120px;
    right:-120px;

    filter:blur(80px);

    animation:glowMove2 10s infinite alternate;
}

@keyframes glowMove{

    0%{
        transform:translate(0,0);
    }

    100%{
        transform:translate(80px,50px);
    }
}

@keyframes glowMove2{

    0%{
        transform:translate(0,0);
    }

    100%{
        transform:translate(-80px,-50px);
    }
}

/* OVERLAY */

.gst-overlay{

    position:relative;

    z-index:5;

    max-width:850px;

    padding:40px;
}

.gst-overlay h1{

    font-size:75px;

    color:white;

    margin-bottom:25px;

    font-weight:700;

    line-height:1.2;

    text-shadow:
    0 0 20px rgba(255,255,255,0.15);
}

.gst-overlay p{

    font-size:22px;

    color:#dbeafe;

    line-height:1.8;

    margin-bottom:35px;
}

/* HERO BUTTON */

.gst-overlay button{

    padding:18px 38px;

    border:none;

    border-radius:50px;

    background:
    linear-gradient(
    135deg,
    #00c896,
    #0066ff
    );

    color:white;

    font-size:18px;

    font-weight:600;

    cursor:pointer;

    transition:0.4s;

    box-shadow:
    0 10px 25px rgba(0,0,0,0.25);
}

.gst-overlay button:hover{

    transform:
    translateY(-5px)
    scale(1.03);

    box-shadow:
    0 20px 40px rgba(0,0,0,0.35);
}

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

body{
    background:#020617;
}

.pricing-section{
    width:100%;
    padding:100px 8%;
    background:#020617;
}

.pricing-title{
    text-align:center;
    margin-bottom:70px;
}

.pricing-title h1{
    font-size:70px;
    color:#fff;
    font-weight:800;
}

.pricing-title h1 span{
    color:#00e5ff;
}

.pricing-title p{
    color:#cbd5e1;
    font-size:24px;
    margin-top:20px;
}

.title-line{
    width:160px;
    height:4px;
    background:#00ffff;
    margin:25px auto;
    border-radius:50px;
    box-shadow:0 0 20px #00ffff;
}

.pricing-container{
    display:flex;
    justify-content:center;
    gap:40px;
    flex-wrap:wrap;
}

.pricing-card{
    width:380px;
    background:#071325;
    border:2px solid rgba(0,255,255,0.2);
    border-radius:30px;
    padding:45px 35px;
    transition:0.5s;
    position:relative;
    overflow:hidden;
    box-shadow:0 0 20px rgba(0,255,255,0.08);
}

.pricing-card:hover{
    transform:translateY(-12px);
    border-color:#00ffff;
    box-shadow:0 0 35px #00ffff55;
}

.premium-card{
    border:2px solid #00ffff;
    box-shadow:0 0 40px #00ffff44;
}

.plan-tag{
    display:inline-block;
    padding:10px 30px;
    border:2px solid #00ffff55;
    border-radius:50px;
    color:#00ffff;
    font-size:22px;
    font-weight:600;
    margin-bottom:30px;
}

.icon-circle{
    width:100px;
    height:100px;
    border-radius:50%;
    border:2px solid #00ffff55;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:45px;
    margin:0 auto 30px;
    color:#00ffff;
}

.pricing-card h2{
    color:#fff;
    text-align:center;
    font-size:38px;
    margin-bottom:15px;
}

.small-line{
    width:70px;
    height:3px;
    background:#00ffff;
    margin:20px auto;
}

.pricing-card h3{
    text-align:center;
    font-size:75px;
    margin-bottom:35px;
    color:#00ffff;
    font-weight:800;
}

.pricing-card ul{
    list-style:none;
    margin-bottom:40px;
}

.pricing-card ul li{
    color:#e2e8f0;
    font-size:24px;
    margin-bottom:18px;
}

.pricing-btn{
    display:flex;
    justify-content:center;
    align-items:center;
    width:100%;
    height:70px;
    border-radius:18px;
    text-decoration:none;
    font-size:26px;
    font-weight:700;
    color:#fff;
    background:linear-gradient(to right,#14f1d9,#1145ff);
    transition:0.4s;
}

.pricing-btn:hover{
    transform:scale(1.05);
}

.popular-badge{
    position:absolute;
    top:0;
    right:0;
    background:#00ffff;
    color:#000;
    padding:18px 22px;
    font-size:20px;
    font-weight:700;
}

/* =========================
   ULTRA PREMIUM CONTENT
========================= */

.gst-main{

    width:92%;

    margin:90px auto;

    display:grid;

    grid-template-columns:2fr 1fr;

    gap:40px;

    align-items:start;
}

/* =========================
   LEFT CONTENT
========================= */

.gst-text{

    position:relative;

    background:
    linear-gradient(
    145deg,
    #ffffff,
    #f7faff
    );

    padding:55px;

    border-radius:35px;

    overflow:hidden;

    border:
    1px solid rgba(255,255,255,0.8);

    box-shadow:
    0 10px 30px rgba(15,23,42,0.08),
    0 30px 70px rgba(15,23,42,0.12);

    backdrop-filter:blur(18px);
}

/* PREMIUM LIGHT */

.gst-text::before{

    content:"";

    position:absolute;

    width:350px;
    height:350px;

    background:
    radial-gradient(
    rgba(0,102,255,0.12),
    transparent 70%
    );

    top:-140px;
    right:-120px;

    filter:blur(40px);
}

/* SECOND GLOW */

.gst-text::after{

    content:"";

    position:absolute;

    width:260px;
    height:260px;

    background:
    radial-gradient(
    rgba(0,200,150,0.12),
    transparent 70%
    );

    bottom:-120px;
    left:-100px;

    filter:blur(35px);
}

/* HEADINGS */

.gst-text h2{

    position:relative;

    font-size:38px;

    margin-top:35px;

    margin-bottom:18px;

    color:#071a2f;

    line-height:1.3;

    z-index:2;
}

/* GOLD LINE */

.gst-text h2::before{

    content:"";

    position:absolute;

    left:-20px;
    top:8px;

    width:7px;
    height:80%;

    border-radius:20px;

    background:
    linear-gradient(
    to bottom,
    #d4af37,
    #f5d76e
    );
}

/* PARAGRAPH */

.gst-text p{

    position:relative;

    z-index:2;

    color:#475569;

    font-size:17px;

    line-height:2;

    margin-bottom:25px;
}

/* LIST */

.gst-text ul{

    position:relative;

    z-index:2;

    list-style:none;

    margin-top:20px;
}

/* LIST ITEM */

.gst-text ul li{

    position:relative;

    padding:18px 22px 18px 55px;

    margin-bottom:18px;

    border-radius:20px;

    background:
    rgba(255,255,255,0.7);

    border:
    1px solid rgba(0,0,0,0.05);

    box-shadow:
    0 10px 20px rgba(0,0,0,0.04);

    transition:0.4s;

    color:#334155;

    font-size:16px;

    overflow:hidden;
}

/* ICON */

.gst-text ul li::before{

    content:"✓";

    position:absolute;

    left:20px;
    top:50%;

    transform:translateY(-50%);

    width:24px;
    height:24px;

    border-radius:50%;

    background:
    linear-gradient(
    135deg,
    #00c896,
    #0066ff
    );

    color:white;

    display:flex;

    justify-content:center;
    align-items:center;

    font-size:13px;

    font-weight:bold;

    box-shadow:
    0 0 15px rgba(0,102,255,0.3);
}

/* HOVER */

.gst-text ul li:hover{

    transform:
    translateY(-5px)
    scale(1.01);

    box-shadow:
    0 20px 40px rgba(0,0,0,0.08);
}

/* =========================
   SIDE CONSULTATION FORM
========================= */

.gst-side-form{

    position:sticky;

    top:120px;

    background:
    linear-gradient(
    145deg,
    #071a2f,
    #0f2d4d
    );

    padding:45px;

    border-radius:35px;

    overflow:hidden;

    border:
    1px solid rgba(255,255,255,0.08);

    box-shadow:
    0 20px 50px rgba(0,0,0,0.25);
}

/* SELECT DROPDOWN FIX */

.gst-side-form select{

    appearance:none;

    -webkit-appearance:none;

    -moz-appearance:none;

    background-color:#18314f;

    color:white;
}

/* DROPDOWN OPTIONS */

.gst-side-form select option{

    background:#0f2d4d;

    color:white;

    padding:15px;
}

/* FOCUS */

.gst-side-form select:focus{

    background:#18314f;

    color:white;
}

/* FORM GLOW */

.gst-side-form::before{

    content:"";

    position:absolute;

    width:280px;
    height:280px;

    background:
    radial-gradient(
    rgba(0,255,200,0.12),
    transparent 70%
    );

    top:-100px;
    right:-100px;

    filter:blur(40px);
}

/* TITLE */

.gst-side-form h2{

    position:relative;

    z-index:2;

    text-align:center;

    color:white;

    font-size:34px;

    margin-bottom:30px;
}

/* FORM */

.gst-side-form form{

    position:relative;

    z-index:2;

    display:flex;

    flex-direction:column;

    gap:18px;
}

/* INPUTS */

.gst-side-form input,
.gst-side-form select,
.gst-side-form textarea{

    padding:17px 18px;

    border:none;

    border-radius:18px;

    background:
    rgba(255,255,255,0.08);

    color:white;

    font-size:15px;

    outline:none;

    border:
    1px solid rgba(255,255,255,0.08);

    backdrop-filter:blur(12px);

    transition:0.3s;
}

/* FOCUS */

.gst-side-form input:focus,
.gst-side-form select:focus,
.gst-side-form textarea:focus{

    border:
    1px solid #00ffd5;

    box-shadow:
    0 0 18px rgba(0,255,213,0.2);
}

/* BUTTON */

.gst-side-form button{

    padding:18px;

    border:none;

    border-radius:20px;

    background:
    linear-gradient(
    135deg,
    #d4af37,
    #f5d76e
    );

    color:#111;

    font-size:17px;

    font-weight:700;

    cursor:pointer;

    transition:0.4s;
}

/* BUTTON HOVER */

.gst-side-form button:hover{

    transform:
    translateY(-5px)
    scale(1.02);

    box-shadow:
    0 18px 35px rgba(212,175,55,0.35);
}

/* MOBILE */

@media(max-width:950px){

    .gst-main{

        grid-template-columns:1fr;
    }

    .gst-side-form{

        position:relative;

        top:0;
    }

    .gst-text{

        padding:35px 28px;
    }
}

/* FEATURES */

.gst-features{

    width:92%;

    margin:80px auto;

    text-align:center;
}

.gst-features h1{

    font-size:52px;

    color:#071a2f;

    margin-bottom:50px;
}

.feature-grid{

    display:grid;

    grid-template-columns:
    repeat(4,1fr);

    gap:30px;
}

/* FEATURE BOX */

.feature-box{

    background:white;

    padding:40px 30px;

    border-radius:25px;

    transition:0.4s;

    box-shadow:
    0 10px 30px rgba(0,0,0,0.08);

    position:relative;

    overflow:hidden;
}

.feature-box::before{

    content:"";

    position:absolute;

    inset:0;

    background:
    linear-gradient(
    135deg,
    rgba(0,200,150,0.1),
    rgba(0,102,255,0.1)
    );

    opacity:0;

    transition:0.4s;
}

.feature-box:hover::before{

    opacity:1;
}

.feature-box:hover{

    transform:
    translateY(-12px)
    scale(1.02);

    box-shadow:
    0 20px 45px rgba(0,0,0,0.18);
}

.feature-box h2{

    color:#003566;

    margin-bottom:18px;

    font-size:28px;

    position:relative;

    z-index:2;
}

.feature-box p{

    color:#555;

    line-height:1.8;

    position:relative;

    z-index:2;
}

/* TRUST BADGES */

.trust-badges{

    width:92%;

    margin:70px auto;

    display:grid;

    grid-template-columns:
    repeat(4,1fr);

    gap:25px;
}

.trust-badge{

    background:white;

    padding:25px;

    border-radius:20px;

    text-align:center;

    font-size:20px;

    font-weight:600;

    box-shadow:
    0 10px 25px rgba(0,0,0,0.08);

    transition:0.4s;
}

.trust-badge:hover{

    transform:
    translateY(-8px);

    background:
    linear-gradient(
    135deg,
    #00c896,
    #0066ff
    );

    color:white;
}

/* FAQ SECTION */

.faq-section{

    width:92%;

    margin:90px auto;
}

.faq-section h1{

    text-align:center;

    font-size:52px;

    color:#071a2f;

    margin-bottom:50px;
}

/* FAQ BOX */

.faq-box{

    margin-bottom:25px;

    border-radius:20px;

    overflow:hidden;

    box-shadow:
    0 10px 25px rgba(0,0,0,0.08);
}

.faq-question{

    width:100%;

    padding:25px;

    border:none;

    background:white;

    text-align:left;

    font-size:20px;

    font-weight:600;

    cursor:pointer;

    transition:0.3s;
}

.faq-question:hover{

    background:#003566;

    color:white;
}

.faq-answer{

    max-height:0;

    overflow:hidden;

    background:#f9fbff;

    transition:0.4s ease;
}

.faq-answer.active{

    max-height:250px;

    padding:25px;
}

.faq-answer p{

    font-size:17px;

    color:#444;

    line-height:1.8;
}

/* PREMIUM FOOTER */

.premium-footer{

    background:
    linear-gradient(
    135deg,
    #02111f,
    #071a2f,
    #003566
    );

    padding:80px 8% 30px;

    margin-top:100px;

    color:white;
}

.footer-grid{

    display:grid;

    grid-template-columns:
    repeat(4,1fr);

    gap:40px;

    margin-bottom:40px;
}

.footer-box h2,
.footer-box h3{

    margin-bottom:20px;

    color:#00d9a6;
}

.footer-box p{

    line-height:2;

    color:#dbeafe;
}

.footer-box a{

    display:block;

    color:#dbeafe;

    text-decoration:none;

    margin-bottom:12px;

    transition:0.3s;
}

.footer-box a:hover{

    color:#00d9a6;

    transform:translateX(5px);
}

/* BOTTOM */

.footer-bottom{

    text-align:center;

    border-top:
    1px solid rgba(255,255,255,0.1);

    padding-top:25px;

    color:#dbeafe;
}

/* RESPONSIVE */

@media(max-width:1000px){

    .gst-main{

        grid-template-columns:1fr;
    }

    .feature-grid{

        grid-template-columns:1fr 1fr;
    }

    .trust-badges{

        grid-template-columns:1fr 1fr;
    }

    .footer-grid{

        grid-template-columns:1fr 1fr;
    }

    .gst-overlay h1{

        font-size:55px;
    }
}

@media(max-width:700px){

    .feature-grid,
    .trust-badges,
    .footer-grid{

        grid-template-columns:1fr;
    }

    .gst-text,
    .gst-side-form{

        padding:30px;
    }

    .gst-overlay h1{

        font-size:42px;
    }

    .gst-overlay p{

        font-size:18px;
    }

    .gst-features h1,
    .faq-section h1{

        font-size:38px;
    }
}
/* =========================
   ANIMATED LUXURY BACKGROUND
========================= */

body{

    background:
    linear-gradient(
    -45deg,
    #f4f7fc,
    #eef4ff,
    #f8fbff,
    #edf6ff
    );

    background-size:400% 400%;

    animation:
    animatedBg 12s ease infinite;

    overflow-x:hidden;
}

/* BACKGROUND ANIMATION */

@keyframes animatedBg{

    0%{
        background-position:0% 50%;
    }

    50%{
        background-position:100% 50%;
    }

    100%{
        background-position:0% 50%;
    }
}

/* =========================
   FLOATING GLOW BALLS
========================= */

body::before{

    content:"";

    position:fixed;

    width:450px;
    height:450px;

    top:-120px;
    left:-120px;

    border-radius:50%;

    background:
    radial-gradient(
    rgba(0,102,255,0.18),
    transparent 70%
    );

    filter:blur(70px);

    animation:
    moveBall1 10s ease-in-out infinite alternate;

    z-index:-1;
}

body::after{

    content:"";

    position:fixed;

    width:400px;
    height:400px;

    bottom:-120px;
    right:-100px;

    border-radius:50%;

    background:
    radial-gradient(
    rgba(0,255,200,0.15),
    transparent 70%
    );

    filter:blur(70px);

    animation:
    moveBall2 12s ease-in-out infinite alternate;

    z-index:-1;
}

/* MOVE ANIMATION */

@keyframes moveBall1{

    0%{

        transform:
        translate(0,0)
        scale(1);
    }

    100%{

        transform:
        translate(120px,80px)
        scale(1.2);
    }
}

@keyframes moveBall2{

    0%{

        transform:
        translate(0,0)
        scale(1);
    }

    100%{

        transform:
        translate(-100px,-70px)
        scale(1.15);
    }
}
/* =========================
   PAN REVIEW SECTION
========================= */

.pan-review-section{

    width:92%;

    margin:100px auto;

    text-align:center;

    overflow:hidden;
}

/* TITLE */

.pan-review-section h1{

    font-size:52px;

    color:#071a2f;

    margin-bottom:50px;
}

/* SLIDER */

.pan-review-slider{

    overflow:hidden;

    position:relative;
}

/* TRACK */

.pan-review-track{

    display:flex;

    gap:30px;

    width:max-content;

    animation:reviewScroll 40s linear infinite;
}

/* CARD */

.pan-review-card{

    width:350px;

    background:
    linear-gradient(
    145deg,
    rgba(255,255,255,0.96),
    rgba(245,248,255,0.92)
    );

    padding:35px;

    border-radius:30px;

    text-align:left;

    box-shadow:
    0 15px 35px rgba(0,0,0,0.08);

    border:
    1px solid rgba(255,255,255,0.7);

    transition:0.4s;

    flex-shrink:0;

    position:relative;

    overflow:hidden;
}

/* GLOW */

.pan-review-card::before{

    content:"";

    position:absolute;

    width:220px;
    height:220px;

    background:
    radial-gradient(
    rgba(0,102,255,0.12),
    transparent 70%
    );

    top:-100px;
    right:-100px;

    filter:blur(35px);
}

/* HOVER */

.pan-review-card:hover{

    transform:
    translateY(-10px);

    box-shadow:
    0 25px 50px rgba(0,0,0,0.15);
}

/* STARS */

.stars{

    font-size:22px;

    margin-bottom:18px;
}

/* TEXT */

.pan-review-card p{

    font-size:16px;

    line-height:1.9;

    color:#475569;

    margin-bottom:25px;
}

/* NAME */

.pan-review-card h3{

    color:#071a2f;

    font-size:18px;
}

/* AUTO LOOP */

@keyframes reviewScroll{

    0%{
        transform:translateX(0);
    }

    100%{
        transform:translateX(-50%);
    }
}

/* MOBILE */

@media(max-width:768px){

    .pan-review-card{

        width:280px;
    }

    .pan-review-section h1{

        font-size:36px;
    }
}

