/* ===== GLOBAL RESET ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #0a0a0a;
    color: #fff;
    overflow-x: hidden;
}

/* ===== CUSTOM SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #111;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(#FFD700, #C0C0C0);
    border-radius: 10px;
}

/* ===== COLORS ===== */
:root {
    --gold: #FFD700;
    --silver: #C0C0C0;
    --dark: #0a0a0a;
    --black2: #111;
    --white: #ffffff;
}

/* ===== LINKS ===== */
a {
    text-decoration: none;
    color: white;
}

ul {
    list-style: none;
}

/* ===== NAVBAR ===== */
.navbar {
    width: 100%;
    padding: 18px 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 999;
    border-bottom: 1px solid rgba(255, 215, 0, 0.15);
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    width: 55px;
}

.logo span {
    font-size: 24px;
    font-weight: 700;
    font-family: 'Orbitron', sans-serif;
    background: linear-gradient(to right, #FFD700, #C0C0C0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    gap: 35px;
}

.nav-links a {
    font-size: 16px;
    font-weight: 500;
    transition: 0.3s;
}

.nav-links a:hover {
    color: var(--gold);
}

.nav-btn {
    padding: 12px 25px;
    border-radius: 30px;
    background: linear-gradient(to right, #FFD700, #C0C0C0);
    color: black;
    font-weight: 700;
    transition: 0.3s;
}

.nav-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0px 0px 20px rgba(255, 215, 0, 0.4);
}

/* ===== COMMON SECTION ===== */
section {
    min-height: 100vh;
    padding: 80px 8%;
}

/* ===== FOOTER ===== */
footer {
    text-align: center;
    padding: 25px;
    background: #111;
    color: #aaa;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
}

/* ===== HERO SECTION ===== */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    min-height: 90vh;
    background:
        radial-gradient(circle at top right, rgba(255, 215, 0, 0.15), transparent 35%),
        radial-gradient(circle at bottom left, rgba(192, 192, 192, 0.15), transparent 35%);
}

.hero-left {
    flex: 1;
}

.hero-left h1 {
    font-size: 58px;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 25px;
}

.hero-left h1 span {
    background: linear-gradient(to right, #FFD700, #C0C0C0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-left p {
    font-size: 18px;
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 35px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.btn1, .btn2 {
    padding: 15px 32px;
    border-radius: 30px;
    font-weight: 700;
    transition: 0.3s;
}

.btn1 {
    background: linear-gradient(to right, #FFD700, #C0C0C0);
    color: black;
}

.btn2 {
    border: 2px solid #FFD700;
    color: white;
}

.btn1:hover,
.btn2:hover {
    transform: translateY(-4px);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
}

.hero-right {
    flex: 1;
    text-align: center;
}

.hero-right img {
    width: 100%;
    max-width: 600px;
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-18px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* ===== ABOUT SECTION ===== */
.about {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.about-left,
.about-right {
    flex: 1;
}

.about-left img {
    width: 100%;
    max-width: 550px;
}

.about-right h4 {
    color: #FFD700;
    margin-bottom: 15px;
    font-size: 18px;
    letter-spacing: 2px;
}

.about-right h2 {
    font-size: 42px;
    margin-bottom: 25px;
}

.about-right h2 span {
    background: linear-gradient(to right, #FFD700, #C0C0C0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-right p {
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 17px;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-top: 30px;
}

.about-features div {
    background: #111;
    padding: 18px;
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.15);
    transition: 0.3s;
}

.about-features div:hover {
    transform: translateY(-4px);
    border-color: #FFD700;
}

/* ===== PLANS SECTION ===== */
.section-title {
    text-align: center;
    margin-bottom: 70px;
}

.section-title h4 {
    color: #FFD700;
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.section-title h2 {
    font-size: 42px;
}

.plan-box {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 100px;
    padding: 40px;
    background: #111;
    border-radius: 20px;
    border: 1px solid rgba(255, 215, 0, 0.15);
}

.plan-left,
.plan-right {
    flex: 1;
}

.plan-left img {
    width: 100%;
    max-width: 500px;
}

.plan-right h3 {
    font-size: 34px;
    margin-bottom: 25px;
    color: #FFD700;
}

.plan-right p {
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 20px;
}

.plan-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 30px;
}

.plan-features span {
    background: #1b1b1b;
    padding: 14px;
    border-radius: 10px;
}

.demo-buttons {
    display: flex;
    gap: 20px;
    margin-top: 35px;
}

.demo-buttons a {
    padding: 14px 30px;
    border-radius: 30px;
    font-weight: 700;
    background: linear-gradient(to right, #FFD700, #C0C0C0);
    color: black;
    transition: 0.3s;
}

.demo-buttons a:hover {
    transform: translateY(-4px);
}

/* Reverse Plan Layout */
.plan-box.reverse {
    flex-direction: row-reverse;
}

/* ===== SERVICES SECTION ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: #111;
    padding: 40px 25px;
    text-align: center;
    border-radius: 20px;
    border: 1px solid rgba(255, 215, 0, 0.15);
    transition: 0.4s;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: #FFD700;
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.15);
}

.service-card i {
    font-size: 42px;
    margin-bottom: 20px;
    background: linear-gradient(to right, #FFD700, #C0C0C0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.service-card h3 {
    font-size: 20px;
    line-height: 1.6;
}

/* ===== FEATURES SECTION ===== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
}

.feature-card {
    background: #111;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 215, 0, 0.15);
    transition: 0.4s;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: #FFD700;
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.15);
}

.feature-card i {
    font-size: 45px;
    margin-bottom: 20px;
    background: linear-gradient(to right, #FFD700, #C0C0C0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feature-card h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #FFD700;
}

.feature-card p {
    color: #ccc;
    line-height: 1.8;
}

/* ===== CONTACT SECTION ===== */
.contact-wrapper {
    display: flex;
    gap: 50px;
    margin-top: 50px;
}

.contact-left,
.contact-right {
    flex: 1;
}

.contact-left h3 {
    font-size: 34px;
    margin-bottom: 20px;
    color: #FFD700;
}

.contact-left p {
    color: #ccc;
    line-height: 1.8;
}

.contact-info {
    margin-top: 30px;
}

.contact-info p {
    margin-bottom: 20px;
    font-size: 18px;
}

.contact-info i {
    color: #FFD700;
    margin-right: 12px;
}

.whatsapp-btn {
    display: inline-block;
    margin-top: 30px;
    padding: 15px 35px;
    border-radius: 30px;
    background: linear-gradient(to right, #25D366, #128C7E);
    font-weight: 700;
}

.contact-right form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-right input,
.contact-right textarea {
    width: 100%;
    padding: 18px;
    background: #111;
    border: 1px solid rgba(255, 215, 0, 0.15);
    border-radius: 12px;
    color: white;
    outline: none;
}

.contact-right button {
    padding: 16px;
    border: none;
    border-radius: 30px;
    background: linear-gradient(to right, #FFD700, #C0C0C0);
    color: black;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
}

/* ===============================
   RESPONSIVE DESIGN
================================ */

/* Tablet */
@media (max-width: 992px) {

    .navbar {
        padding: 18px 5%;
        flex-wrap: wrap;
        gap: 20px;
    }

    .nav-links {
        gap: 20px;
    }

    .hero,
    .about,
    .contact-wrapper,
    .plan-box,
    .plan-box.reverse {
        flex-direction: column;
        text-align: center;
    }

    .hero-left h1 {
        font-size: 42px;
    }

    .about-right h2,
    .section-title h2 {
        font-size: 34px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .plan-features,
    .about-features {
        grid-template-columns: 1fr 1fr;
    }
}


/* Mobile */
@media (max-width: 768px) {

    section {
        padding: 60px 5%;
    }

    .navbar {
        flex-direction: column;
        text-align: center;
    }

    .logo span {
        font-size: 18px;
    }

    .nav-links {
        flex-direction: column;
        gap: 15px;
    }

    .nav-btn {
        margin-top: 10px;
    }

    .hero-left h1 {
        font-size: 34px;
    }

    .hero-left p {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .about-right h2,
    .section-title h2 {
        font-size: 28px;
    }

    .plan-right h3 {
        font-size: 28px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .plan-features,
    .about-features {
        grid-template-columns: 1fr;
    }

    .contact-left h3 {
        font-size: 28px;
    }

    .feature-card h3 {
        font-size: 24px;
    }

    .contact-info p {
        font-size: 16px;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 90px;
        left: 0;
        width: 100%;
        background: #111;
        flex-direction: column;
        padding: 25px 0;
        text-align: center;
        border-top: 1px solid rgba(255, 215, 0, 0.2);
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-btn {
        display: none;
    }
}


/* Small Mobile */
@media (max-width: 480px) {

    .hero-left h1 {
        font-size: 28px;
        line-height: 1.4;
    }

    .hero-left p {
        font-size: 15px;
    }

    .btn1,
    .btn2 {
        width: 100%;
        text-align: center;
    }

    .plan-box,
    .feature-card,
    .service-card {
        padding: 25px;
    }

    .section-title h2 {
        font-size: 24px;
    }
}

/* ===== PREMIUM FOOTER ===== */
.footer {
    background: #070707;
    padding-top: 80px;
    border-top: 1px solid rgba(255, 215, 0, 0.15);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding: 0 8% 60px;
}

.footer-box img {
    width: 70px;
    margin-bottom: 20px;
}

.footer-box h3 {
    font-size: 28px;
    margin-bottom: 20px;
    background: linear-gradient(to right, #FFD700, #C0C0C0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-box h4 {
    font-size: 22px;
    color: #FFD700;
    margin-bottom: 25px;
}

.footer-box p,
.footer-box li {
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 12px;
}

.footer-box ul {
    padding: 0;
}

.footer-box a {
    color: #ccc;
    transition: 0.3s;
}

.footer-box a:hover {
    color: #FFD700;
    padding-left: 5px;
}

.footer-box i {
    color: #FFD700;
    margin-right: 10px;
}

.footer-bottom {
    text-align: center;
    padding: 25px;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
}

.footer-bottom p {
    color: #999;
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* ===== FLOATING WHATSAPP ===== */
.floating-whatsapp {
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 65px;
    height: 65px;
    background: linear-gradient(to right, #25D366, #128C7E);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 34px;
    z-index: 999;
    box-shadow: 0 0 25px rgba(37, 211, 102, 0.4);
    animation: whatsappPulse 1.8s infinite;
}

.floating-whatsapp:hover {
    transform: scale(1.08);
}

@keyframes whatsappPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
    }
    70% {
        box-shadow: 0 0 0 18px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@media (max-width: 768px) {
    .floating-whatsapp {
        width: 58px;
        height: 58px;
        font-size: 28px;
        right: 15px;
        bottom: 15px;
    }
}

/* ===== HAMBURGER MENU ===== */
.menu-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: #FFD700;
}

/* ===== SCROLL ANIMATION ===== */
.hidden {
    opacity: 0;
    transform: translateY(60px);
    transition: all 1s ease;
}

.show {
    opacity: 1;
    transform: translateY(0);
}

/* ===== SCROLL TO TOP ===== */
#scrollTopBtn {
    position: fixed;
    right: 25px;
    bottom: 105px;
    width: 55px;
    height: 55px;
    border: none;
    border-radius: 50%;
    background: linear-gradient(to right, #FFD700, #C0C0C0);
    color: black;
    font-size: 22px;
    cursor: pointer;
    display: none;
    z-index: 999;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
    transition: 0.3s;
}

#scrollTopBtn:hover {
    transform: translateY(-4px);
}

@media (max-width: 768px) {
    #scrollTopBtn {
        width: 48px;
        height: 48px;
        font-size: 18px;
        right: 15px;
        bottom: 85px;
    }
}