/* =========================================
   1. CONTACT LAYOUT
   ========================================= */

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    max-width: 1100px;
    margin: 40px auto 0;
    text-align: left;
    align-items: start;
}

/* Page Title Spacing Override */
.contact-page-section .hero-title {
    margin-bottom: 70px;
    margin-top: 20px;
}

.featured-section {
    margin-top: 200px;
}

/* =========================================
   2. INFO SECTION
   ========================================= */

.info-header {
    margin-bottom: 30px;
}

.info-header h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.info-header p {
    color: #ccc;
    line-height: 1.6;
}

/* Email Card */
.email-card {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.email-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.2);
}

.icon-box {
    background: rgba(255, 255, 255, 0.1);
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.email-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.email-content .label {
    font-size: 0.85rem;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.email-content .value {
    font-size: 1.1rem;
    color: #fff;
    font-weight: 600;
}

.copy-icon {
    color: #aaa;
    transition: color 0.2s;
}

.email-card:hover .copy-icon {
    color: #fff;
}

/* Copy Toast */
.copy-toast {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%) translateX(20px);
    background: #4ade80;
    color: #000;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: bold;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.copy-toast.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0);
}

/* =========================================
   3. SOCIAL GRID
   ========================================= */

.social-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.social-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 10px;
    border-radius: 16px;
    text-decoration: none;
    color: #ccc;
    transition: all 0.3s ease;
}

.social-card svg {
    width: 32px;
    height: 32px;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.social-card span {
    font-size: 0.9rem;
    font-weight: 500;
}

.social-card:hover {
    transform: translateY(-5px);
    color: #fff;
}

.social-card:hover svg {
    transform: scale(1.2);
}

.social-card.insta:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-color: transparent;
}

.social-card.tiktok:hover {
    background: #000;
    box-shadow: -2px -2px 0 #25F4EE, 2px 2px 0 #FE2C55;
    border-color: #000;
}

.social-card.x:hover {
    background: #000;
    border-color: #333;
}

/* =========================================
   4. CONTACT FORM
   ========================================= */

.modern-form {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 24px;
    backdrop-filter: blur(10px);
}

.form-title h3 {
    margin-bottom: 30px;
    font-size: 1.5rem;
}

.input-group {
    position: relative;
    margin-bottom: 25px;
}

.input-group input,
.input-group textarea {
    width: 100%;
    padding: 15px;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #fff;
    font-size: 1rem;
    font-family: inherit;
    outline: none;
    transition: all 0.3s;
}

.input-group textarea {
    min-height: 150px;
    resize: vertical;
}

.input-group input:focus,
.input-group textarea:focus {
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(0, 0, 0, 0.4);
}

/* Floating Label */
.input-group label {
    position: absolute;
    left: 15px;
    top: 15px;
    color: #aaa;
    pointer-events: none;
    transition: all 0.3s ease;
    background: transparent;
    padding: 0 5px;
}

.input-group input:focus+label,
.input-group input:not(:placeholder-shown)+label {
    top: -10px;
    left: 10px;
    font-size: 0.8rem;
    color: #fff;
    background: #282828;
    border-radius: 4px;
}

.input-group textarea:focus+label,
.input-group textarea:not(:placeholder-shown)+label {
    top: -10px;
    left: 10px;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: #e6e6e6;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.1);
}

/* =========================================
   5. RESPONSIVENESS
   ========================================= */

@media (max-width: 900px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-info-col {
        order: 1;
    }

    .contact-form-col {
        order: 2;
    }

    .modern-form {
        padding: 30px 20px;
    }
}