:root {
    --primary-color: #485342;
    --primary-light: #6e8064;
    --primary-dark: #293025;
    --bg-color: #0a0d09;
    --text-primary: #ffffff;
    --text-secondary: #a0aab2;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    min-height: 100%;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-primary);
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow-x: hidden;
}

/* Background Animations */
.background-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.blob {
    position: absolute;
    filter: blur(80px);
    border-radius: 50%;
    opacity: 0.6;
    animation: float 20s infinite ease-in-out alternate;
}

.blob-1 {
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, var(--primary-color) 0%, transparent 70%);
    top: -20%;
    left: -10%;
    animation-delay: 0s;
}

.blob-2 {
    width: 40vw;
    height: 40vw;
    background: radial-gradient(circle, var(--primary-light) 0%, transparent 70%);
    bottom: -10%;
    right: -10%;
    animation-delay: -5s;
    opacity: 0.4;
}

.blob-3 {
    width: 30vw;
    height: 30vw;
    background: radial-gradient(circle, var(--primary-dark) 0%, transparent 70%);
    top: 40%;
    left: 60%;
    animation-delay: -10s;
}

.noise-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none;
}

@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(5%, 10%) scale(1.1); }
    100% { transform: translate(-5%, -5%) scale(0.9); }
}

/* Main Content */
.container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 600px;
    padding: clamp(16px, 4vw, 24px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: clamp(16px, 3vw, 24px);
    padding: clamp(20px, 5vw, 40px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    transform: translateY(20px);
    opacity: 0;
    animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeUp {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.logo-container {
    margin-bottom: clamp(12px, 2.5vh, 30px);
    background: rgba(255, 255, 255, 0.9);
    padding: clamp(8px, 1.5vh, 15px);
    border-radius: clamp(12px, 2vw, 20px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.logo {
    max-width: clamp(90px, 22vw, 180px);
    max-height: clamp(60px, 12vh, 120px);
    height: auto;
    width: auto;
    object-fit: contain;
}

.content-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    min-height: 0;
}

.badge {
    background: rgba(72, 83, 66, 0.2);
    border: 1px solid var(--primary-color);
    color: var(--primary-light);
    padding: clamp(4px, 0.8vh, 6px) clamp(10px, 2vw, 14px);
    border-radius: 100px;
    font-size: clamp(0.7rem, 1.8vw, 0.85rem);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: clamp(10px, 2vh, 20px);
    flex-shrink: 0;
}

.title {
    font-size: clamp(1.4rem, 5.5vw, 2.5rem);
    font-weight: 800;
    margin-bottom: clamp(8px, 1.5vh, 15px);
    line-height: 1.1;
    background: linear-gradient(to right, #fff, #b0c4b1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subtitle {
    color: var(--text-secondary);
    font-size: clamp(0.85rem, 2.2vw, 1.1rem);
    line-height: 1.5;
    margin-bottom: clamp(12px, 2.5vh, 30px);
    max-width: 95%;
}

.divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--glass-border), transparent);
    margin: clamp(8px, 1.5vh, 20px) 0 clamp(12px, 2.5vh, 30px);
    flex-shrink: 0;
}

.contact-info {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: clamp(8px, 1.5vh, 15px);
    align-items: center;
}

.contact-title {
    font-size: clamp(0.8rem, 2vw, 1rem);
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: clamp(4px, 1vh, 10px);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: clamp(10px, 2vw, 15px);
    text-decoration: none;
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    padding: clamp(10px, 1.8vh, 15px) clamp(14px, 3vw, 25px);
    border-radius: clamp(12px, 2vw, 16px);
    width: 100%;
    transition: all 0.3s ease;
}

.contact-item.hover-effect:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-2px);
    border-color: rgba(72, 83, 66, 0.5);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.icon-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: clamp(36px, 8vw, 48px);
    height: clamp(36px, 8vw, 48px);
    background: rgba(72, 83, 66, 0.15);
    border-radius: clamp(10px, 1.5vw, 12px);
    color: var(--primary-light);
    flex-shrink: 0;
}

.icon-wrapper svg {
    width: clamp(18px, 4vw, 24px);
    height: clamp(18px, 4vw, 24px);
}

.contact-text {
    font-size: clamp(0.8rem, 2vw, 1rem);
    font-weight: 400;
    line-height: 1.4;
    text-align: left;
}

@media (max-width: 480px) {
    .container {
        padding: 16px;
    }

    .glass-card {
        padding: 24px 18px;
    }
}
