/* ========================================
   FRESH CONTACT CARDS - NEW STYLING
   ======================================== */



/* Contact Info Cards - Actual Structure */
.info-card {
    background: var(--background);
    border: 2px solid var(--border);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(20, 255, 114, 0.1);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(20, 255, 114, 0.2);
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), transparent);
}

.info-header {
    margin-bottom: 1.5rem;
}

.info-title {
    color: var(--foreground);
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    position: relative;
    padding-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), transparent);
    border-radius: 2px;
}

.info-title:hover::after {
    width: 100px;
    transition: width 0.3s ease;
}

.info-items {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-items li {
    color: var(--muted-foreground);
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(20, 255, 114, 0.1);
    position: relative;
    padding-left: 2rem;
    line-height: 1.4;
    transition: all 0.3s ease;
}

.info-items li:hover {
    background: rgba(20, 255, 114, 0.05);
    padding-left: 2.5rem;
    color: var(--foreground);
}

.info-items li:last-child {
    border-bottom: none;
}

.info-items li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0.5rem;
    font-size: 1rem;
    color: var(--primary);
    font-weight: bold;
    transition: all 0.3s ease;
}

.info-items li:hover::before {
    transform: scale(1.2);
    color: var(--primary);
}

/* Bold and Italic Text Styling */
.info-items li strong,
.info-items li b {
    color: var(--primary);
    font-weight: 600;
    text-shadow: 0 0 8px rgba(20, 255, 114, 0.3);
}

.info-items li em,
.info-items li i {
    color: #CCCCCC;
    font-style: italic;
    font-weight: 400;
    border-left: 2px solid rgba(20, 255, 114, 0.3);
    padding-left: 0.5rem;
    margin-left: 0.25rem;
}

/* Contact Form Card */
.contact-form-card {
    background: var(--background);
    border: 2px solid var(--border);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(20, 255, 114, 0.1);
    transition: all 0.3s ease;
}

.contact-form-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(20, 255, 114, 0.2);
}

.contact-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), transparent);
}

.contact-form-card h4 {
    color: var(--foreground);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-form-card form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form-card input,
.contact-form-card textarea,
.contact-form-card select {
    background: rgba(20, 255, 114, 0.05);
    border: 1px solid rgba(20, 255, 114, 0.2);
    border-radius: 4px;
    padding: 0.75rem;
    color: var(--foreground);
    font-family: var(--font-sans);
    transition: all 0.3s ease;
}

.contact-form-card input:focus,
.contact-form-card textarea:focus,
.contact-form-card select:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(20, 255, 114, 0.1);
    box-shadow: 0 0 0 3px rgba(20, 255, 114, 0.1);
}

.contact-form-card button {
    background: var(--primary);
    color: var(--background);
    border: none;
    border-radius: 4px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.contact-form-card button:hover {
    background: #00FF66;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .info-card,
    .contact-form-card {
        padding: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .info-title,
    .contact-form-card h4 {
        font-size: 1.4rem;
        padding-bottom: 0.75rem;
    }
    
    .info-title::after {
        width: 40px;
        height: 2px;
    }
    
    .info-title:hover::after {
        width: 60px;
    }
    
    .info-items li {
        padding: 0.4rem 0;
        padding-left: 1.5rem;
    }
    
    .info-items li:hover {
        padding-left: 1.75rem;
    }
}
