/* --- PRO UI/UX Styles --- */

:root {
    --primary-gold: #9E9270;
    --dark-text: #071c1f;
    --light-bg: #f8f9fa;
    --white: #ffffff;
}

/* 1. Contact Info Cards - Clean & Minimal */
.contact-info-wrapper {
    background: var(--light-bg);
    padding: 50px 40px;
    border-radius: 8px;
    height: 100%;
}

.contact-method {
    display: flex;
    align-items: center;
    /* Vertikalno centriranje */
    margin-bottom: 35px;
    padding-bottom: 35px;
    border-bottom: 1px solid #e0e0e0;
}

.contact-method:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.icon-box {
    width: 60px;
    height: 60px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary-gold);
    font-size: 22px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-right: 25px;
    flex-shrink: 0;
}

.content-box h4 {
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #888;
    margin-bottom: 5px;
    font-weight: 600;
}

.content-box p {
    font-size: 20px;
    color: var(--dark-text);
    font-weight: 600;
    margin: 0;
}

.content-box a {
    color: var(--dark-text);
    text-decoration: none;
    transition: color 0.3s;
}

.content-box a:hover {
    color: var(--primary-gold);
}

/* 2. Modern Form with Floating Labels Effect (Visual) */
.modern-form-box {
    background: var(--white);
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.input-group-modern {
    position: relative;
    margin-bottom: 25px;
}

.input-group-modern input,
.input-group-modern textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    background: #fdfdfd;
    transition: all 0.3s;
    font-size: 15px;
}

.input-group-modern input:focus,
.input-group-modern textarea:focus {
    border-color: var(--primary-gold);
    background: var(--white);
    outline: none;
    box-shadow: 0 0 0 3px rgba(158, 146, 112, 0.1);
}

.form-trust-signals {
    margin-top: 20px;
    font-size: 13px;
    color: #777;
    display: flex;
    gap: 20px;
}

.form-trust-signals span {
    display: flex;
    align-items: center;
}

.form-trust-signals i {
    color: var(--primary-gold);
    margin-right: 8px;
}

/* 3. Quote Section */
.quote-block {
    border-left: 4px solid var(--primary-gold);
    background: #fff;
    padding: 40px;
    margin: 60px 0;
    font-size: 20px;
    line-height: 1.6;
    color: var(--dark-text);
    font-style: italic;
    position: relative;
}

/* 4. Bank Cards - Pro Design */
.bank-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.bank-card-pro {
    background: var(--white);
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bank-card-pro:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-gold);
}

.bank-card-pro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-gold);
}

.bank-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.bank-country-badge {
    background: #f4f4f4;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: #555;
}

.bank-name-large {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-text);
}

.iban-container {
    background: #f9f9f9;
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 15px;
    border: 1px dashed #ccc;
    position: relative;
}

.iban-label {
    display: block;
    font-size: 11px;
    color: #888;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.iban-value {
    font-family: 'Courier New', monospace;
    font-size: 16px;
    color: #333;
    font-weight: 600;
    letter-spacing: -0.5px;
    display: block;
}

/* Copy Button */
.copy-btn {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--primary-gold);
    cursor: pointer;
    font-size: 16px;
    transition: color 0.2s;
}

.copy-btn:hover {
    color: #333;
}

.copy-tooltip {
    position: absolute;
    top: -30px;
    right: 0;
    background: #333;
    color: #fff;
    padding: 4px 8px;
    font-size: 11px;
    border-radius: 3px;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.copy-btn.copied+.copy-tooltip {
    opacity: 1;
}