:root {
    --primary: #0066CC;
    --primary-dark: #0052A3;
    --primary-light: #E6F2FF;
    --text-primary: #1A1A1A;
    --text-secondary: #4A5568;
    --text-light: #718096;
    --white: #FFFFFF;
    --bg: #FAFBFC;
    --border: #E2E8F0;
    --shadow: rgba(0, 102, 204, 0.08);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg);
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.page-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    position: relative;
    overflow: hidden;
}

.background-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.06) 0%, rgba(0, 102, 204, 0.02) 100%);
}

.shape-1 {
    width: 600px;
    height: 600px;
    top: -200px;
    right: -200px;
    animation: float 20s ease-in-out infinite;
}

.shape-2 {
    width: 400px;
    height: 400px;
    bottom: -150px;
    left: -150px;
    animation: float 25s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(30px, 30px) scale(1.1);
    }
}

.container {
    position: relative;
    z-index: 1;
}

.custom-card {
    background: var(--white);
    border-radius: 24px;
    border: 1px solid var(--border);
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.custom-badge {
    background: var(--primary-light);
    border: 1px solid rgba(0, 102, 204, 0.15);
    border-radius: 20px;
    padding: 6px 16px;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.company-name {
    font-size: 38px;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.custom-divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, rgba(0, 102, 204, 0.3) 100%);
    border-radius: 2px;
}

.main-title {
    font-size: 52px;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -1px;
    line-height: 1.15;
}

.description {
    font-size: 18px;
    font-weight: 400;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 580px;
    margin: 0 auto;
}


.contact-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.email-button {
    background: var(--primary);
    border: none;
    border-radius: 12px;
    padding: 14px 24px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.25);
    display: inline-flex;
    align-items: center;
}

.email-button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 102, 204, 0.35);
}

.email-button:active {
    transform: translateY(0);
}

.icon {
    width: 20px;
    height: 20px;
    stroke-width: 2.5;
}

/* Bootstrap Overrides */
.btn-primary {
    --bs-btn-bg: var(--primary);
    --bs-btn-border-color: var(--primary);
    --bs-btn-hover-bg: var(--primary-dark);
    --bs-btn-hover-border-color: var(--primary-dark);
    --bs-btn-active-bg: var(--primary-dark);
    --bs-btn-active-border-color: var(--primary-dark);
}

/* Responsive */
@media (max-width: 768px) {
    .page-wrapper {
        padding: 20px;
    }
    
    .custom-card .card-body {
        padding: 48px 40px !important;
    }
    
    .company-name {
        font-size: 32px;
    }
    
    .main-title {
        font-size: 40px;
    }
    
    .description {
        font-size: 17px;
    }
    
    .shape-1 {
        width: 400px;
        height: 400px;
    }
    
    .shape-2 {
        width: 300px;
        height: 300px;
    }
}

@media (max-width: 480px) {
    .page-wrapper {
        padding: 16px;
    }
    
    .custom-card .card-body {
        padding: 40px 28px !important;
    }
    
    .custom-badge {
        font-size: 11px;
        padding: 5px 14px;
    }
    
    .company-name {
        font-size: 28px;
    }
    
    .custom-divider {
        width: 50px;
        height: 3px;
    }
    
    .main-title {
        font-size: 32px;
        line-height: 1.2;
    }
    
    .description {
        font-size: 16px;
        line-height: 1.6;
    }
    
    .contact-label {
        font-size: 12px;
    }
    
    .email-button {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
    }
    
    .shape-1 {
        width: 300px;
        height: 300px;
    }
    
    .shape-2 {
        width: 250px;
        height: 250px;
    }
}

/* Selection */
::selection {
    background: var(--primary-light);
    color: var(--primary-dark);
}
