/* ================================
   FINLAND WHITE LABEL - CENTRALIZED STYLES
   All Finland pages use this single CSS file
   ================================ */

/* ================================
   GLOBAL VARIABLES - REMOVED
   All variables moved to finland-global.css
   ================================ */

/* ================================
   HERO SECTIONS (Contact, Login, Register)
   ================================ */
.contact-hero {
    background: linear-gradient(
        to bottom,
        var(--finland-gradient-start) 0%,
        var(--finland-gradient-mid) 60%,
        var(--finland-gradient-end) 100%
    );
    padding: 6rem 0;
    color: var(--finland-text);
}

/* ================================
   CARDS & FORMS
   ================================ */
.card {
    border-radius: 16px;
    border: 1px solid rgba(30, 58, 138, 0.1);
    background: var(--finland-bg);
    box-shadow: var(--finland-shadow);
}

.visually-hidden {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* ================================
   INPUT GROUPS
   ================================ */
.unified-input-group {
    border: 1px solid var(--finland-border);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: stretch;
}

.unified-input-group .form-control-lg {
    border: none;
    box-shadow: none;
    padding: 1rem 1.5rem;
    border-radius: 0;
}

.unified-input-group .btn {
    border: none;
    background: transparent;
    color: #6c757d;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.unified-input-group:focus-within {
    border-color: var(--finland-border-focus);
    box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
}

/* ================================
   FORM CONTROLS
   ================================ */
.form-control-lg {
    padding: 1rem 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--finland-border);
    transition: all 0.3s ease;
    font-size: 16px;
}

.form-control-lg:focus,
.form-control:focus {
    border-color: var(--finland-border-focus);
    box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
}

/* ================================
   BUTTONS
   ================================ */
.btn-primary {
    background: #3b82f6;
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #2563eb;
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.2);
}

/* ================================
   LINKS
   ================================ */
a {
    color: var(--finland-secondary);
    text-decoration: none;
    transition: all 0.2s ease;
}

a:hover {
    text-decoration: underline;
    opacity: 0.9;
}

/* ================================
   ERROR BOXES
   ================================ */
.error-box {
    background-color: #fde2e4;
    color: #b91c1c;
    border: 1px solid #fecaca;
    border-radius: 8px;
    padding: 1rem;
    font-size: 0.95rem;
}

/* ================================
   PRICING CARDS - REMOVED
   All pricing styles moved to finland-global.css
   ================================ */

/* ================================
   INPUT TYPE FIXES (iOS zoom prevention)
   ================================ */
input[type="email"],
input[type="password"],
input[type="text"] {
    font-size: 16px !important;
}

/* ================================
   RESPONSIVE - TABLET
   ================================ */
@media (max-width: 768px) {
    .card {
        padding: 2rem !important;
    }

    .form-control-lg {
        font-size: 16px;
    }

    .btn-primary {
        padding: 0.75rem 1.5rem;
    }

    .text-muted {
        font-size: 0.875rem;
    }

    .finland-pricing-hero h1 {
        font-size: 2rem;
    }

    .finland-pricing-hero p {
        font-size: 1rem;
    }

    .finland-pricing-cards {
        grid-template-columns: 1fr;
    }

    .finland-pricing-section-title {
        font-size: 2rem;
    }

    .finland-pricing-cta h2 {
        font-size: 2rem;
    }

    .finland-pricing-cta p {
        font-size: 1rem;
    }
}

/* ================================
   RESPONSIVE - MOBILE
   ================================ */
@media (max-width: 576px) {
    html, body {
        margin: 0;
        padding: 0;
        height: 100%;
        overflow-x: hidden;
    }

    .pb-5 {
        padding-bottom: 1rem !important;
    }

    .mb-5 {
        margin-bottom: 1rem !important;
    }

    .finland-pricing-hero {
        padding: 60px 0;
    }

    .finland-pricing-implementation,
    .finland-pricing-security,
    .finland-pricing-cta {
        padding: 40px 0;
    }

    .finland-pricing-section-title {
        font-size: 1.75rem;
    }

    .finland-pricing-card-price {
        font-size: 2rem;
    }

    .finland-pricing-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .finland-pricing-cta-btn {
        width: 100%;
        max-width: 300px;
    }
}

/* ================================
   ANIMATION UTILITIES
   ================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease;
}

/* ================================
   UTILITY CLASSES
   ================================ */
.finland-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.finland-text-center {
    text-align: center;
}

.finland-mb-4 {
    margin-bottom: 2rem;
}

.finland-mt-4 {
    margin-top: 2rem;
}
