:root {
    --ice-bg: #050b18;
    --ice-primary: #00d2ff;
    --ice-secondary: #0056ff;
    --ice-accent: #ffffff;
    --ice-glass: rgba(255, 255, 255, 0.05);
    --ice-glass-border: rgba(255, 255, 255, 0.1);
    --ice-gradient: linear-gradient(135deg, #00d2ff 0%, #0056ff 100%);
    --font-main: 'Outfit', sans-serif;
}

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-main);
}

body {
    background-color: var(--ice-bg);
    color: #fff;
    min-height: 100vh;
    overflow-x: hidden;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(0, 210, 255, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(0, 86, 255, 0.08) 0%, transparent 40%),
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 100% 100%, 100% 100%, 50px 50px, 50px 50px;
}

.bg-blur-circle {
    position: fixed;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 210, 255, 0.1) 0%, transparent 70%);
    filter: blur(80px);
    z-index: -1;
    pointer-events: none;
}

.page-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.ice-card {
    background: var(--ice-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--ice-glass-border);
    border-radius: 40px;
    padding: 4rem;
    /* max-width: 800px; */
    width: 100%;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.ice-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(0, 210, 255, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.text-gradient {
    background: var(--ice-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 210, 255, 0.1);
    color: var(--ice-primary);
    padding: 0.5rem 1.2rem;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 1px solid rgba(0, 210, 255, 0.2);
    margin-bottom: 2rem;
}

.status-dot {
    width: 8px;
    height: 8px;
    background-color: var(--ice-primary);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--ice-primary);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        opacity: 0.6;
    }

    50% {
        transform: scale(1.1);
        opacity: 1;
    }

    100% {
        transform: scale(0.95);
        opacity: 0.6;
    }
}

.logo-container {
    margin-bottom: 3rem;
}

.logo-hex {
    width: 120px;
    height: 120px;
    background: var(--ice-gradient);
    margin: 0 auto;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: transform 0.3s ease;
}

.logo-hex:hover {
    transform: scale(1.05) rotate(5deg);
}

.logo-hex i {
    font-size: 3.5rem;
    color: #fff;
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.2));
}

h1 {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

p.lead {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 3rem;
}

.contact-button {
    background: var(--ice-gradient);
    color: #fff;
    padding: 1.2rem 2.5rem;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 10px 20px -5px rgba(0, 86, 255, 0.4);
}

.contact-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px -5px rgba(0, 86, 255, 0.6);
    color: #fff;
}

/* Form Styles */
.form-control {
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 15px !important;
    padding: 1.2rem 1.5rem !important;
    color: #fff !important;
    transition: all 0.3s ease !important;
    margin-bottom: 1.5rem;
}

.form-control:focus {
    background: rgba(255, 255, 255, 0.05) !important;
    border-color: var(--ice-primary) !important;
    box-shadow: 0 0 0 4px rgba(0, 210, 255, 0.1) !important;
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.input-icon-group {
    position: relative;
}

.input-icon-group i {
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.2);
    pointer-events: none;
}

.input-icon-group textarea+i {
    top: 1.5rem;
    transform: none;
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    animation: revealIn 1s forwards cubic-bezier(0.2, 0.8, 0.2, 1);
}

@keyframes revealIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

/* New Decorative Elements */
.float-element {
    position: absolute;
    background: var(--ice-glass);
    border: 1px solid var(--ice-glass-border);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    animation: float 6s ease-in-out infinite;
    z-index: 1;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0);
    }

    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

.spec-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 4rem;
}

.spec-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.spec-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--ice-primary);
    transform: translateY(-5px);
}

.spec-item i {
    display: block;
    font-size: 1.5rem;
    color: var(--ice-primary);
    margin-bottom: 0.8rem;
}

.spec-item .label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 0.3rem;
}

.spec-item .value {
    font-weight: 600;
    font-size: 1.1rem;
}

.logo-glow {
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0, 210, 255, 0.2) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

/* Responsive */
@media (max-width: 768px) {
    .ice-card {
        padding: 2.5rem 1.5rem;
    }

    h1 {
        font-size: 2.5rem;
    }

    .logo-hex {
        width: 100px;
        height: 100px;
    }
}