* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

body {
    min-height: 100vh;
    background: linear-gradient(45deg, 
        rgba(46, 204, 113, 0.8), 
        rgba(52, 152, 219, 0.8)
    ), #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.contact-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    display: flex;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.left-side {
    flex: 1;
    background: linear-gradient(45deg, 
        rgba(46, 204, 113, 0.9), 
        rgba(52, 152, 219, 0.9)
    );
    padding: 3rem;
    color: white;
    position: relative;
}

.brand {
    margin-bottom: 3rem;
}

.logo-img {
    height: 70px;
    width: auto;
    margin-left: -15px;
}

.brand h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.brand p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.contact-info {
    margin-bottom: 3rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.info-item i {
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

.info-item h3 {
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.info-item p {
    opacity: 0.9;
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

.right-side {
    flex: 1;
    padding: 3rem;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-message {
    max-width: 450px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.contact-message h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #ffffff, #0aab3b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
}

.contact-message p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 1.1rem;
}

.contact-message .sub-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.contact-highlight {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 2.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.contact-highlight:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.contact-highlight i {
    color: #2ecc71;
    font-size: 1.2rem;
}

.contact-highlight span {
    color: white;
    font-weight: 500;
    font-size: 1.1rem;
}

.contact-message .response-time {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    font-style: italic;
    margin-bottom: 0;
}

.back-button {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    border-radius: 10px;
    margin-top: 2rem;
    transition: all 0.3s ease;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.back-button:hover {
    transform: translateX(-5px);
    background: rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
    .contact-card {
        flex-direction: column;
    }
    
    .left-side,
    .right-side {
        padding: 2rem;
    }
    
    .brand {
        margin-bottom: 2rem;
    }
    
    .contact-info {
        margin-bottom: 2rem;
    }
    
    .back-button {
        width: 100%;
        justify-content: center;
    }
} 