/* Reset & fonts */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: linear-gradient(120deg, #000000, #3a3a3a, #000000);
    color: #fff;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

header {
    height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    position: relative;
}

header h1 {
    font-size: 3.5rem;
    animation: fadeDown 1s ease forwards;
}

header p {
    font-size: 1.2rem;
    opacity: 0.8;
    margin-top: 10px;
}

nav {
    margin-top: 20px;
}

nav a {
    margin: 0 15px;
    text-decoration: none;
    color: white;
    padding: 8px 16px;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    transition: 0.3s;
}

nav a:hover {
    background: white;
    color: black;
    transform: scale(1.08);
}

section {
    width: 80%;
    margin: 80px auto;
    padding: 40px;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(6px);
    border-radius: 20px;
    transition: 0.4s;
    opacity: 0;
    transform: translateY(20px);
}

section.visible {
    opacity: 1;
    transform: translateY(0);
}

section:hover {
    transform: scale(1.01);
}

h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

ul li {
    margin: 12px 0;
    padding: 10px;
    background: rgba(255,255,255,0.07);
    border-radius: 10px;
    transition: 0.3s;
}

ul li:hover {
    transform: scale(1.05);
    background: rgba(255,255,255,0.15);
}

.counter-boxes {
    display: flex;
    justify-content: space-around;
    margin-top: 25px;
    flex-wrap: wrap;
}

.counter, .pricing-box {
    text-align: center;
    padding: 20px;
    background: rgba(255,255,255,0.08);
    border-radius: 15px;
    transition: 0.3s;
    width: 40%;
    font-size: 1.3rem;
    margin: 10px;
}

.counter:hover, .pricing-box:hover {
    transform: scale(1.1);
    background: rgba(255,255,255,0.2);
}

.video iframe {
    border-radius: 12px;
    margin-top: 10px;
}

.pricing-box h3 {
    margin-bottom: 15px;
}

.price {
    font-size: 1.8rem;
    font-weight: bold;
}

.currency {
    opacity: 0.8;
}

.note {
    font-size: 0.9rem;
    margin-top: 10px;
    opacity: 0.7;
}

.contact-text {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.contact-btn-container {
    text-align: center;
}

.contact-btn {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(135deg, #5865F2, #7289DA);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: bold;
    transition: 0.3s;
    box-shadow: 0 4px 15px rgba(88, 101, 242, 0.4);
}

.contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(88, 101, 242, 0.6);
}

/* Animations */
@keyframes fadeDown {
    from { transform: translateY(-40px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
