/* Contact and Footer Styles for Vibees Website */

/* Contact Section */
.contact {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.contact-flex {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-top: 40px;
}

.contact-info {
    flex: 1;
    max-width: 500px;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.info-item i {
    font-size: 24px;
    color: var(--primary-color);
    margin-right: 20px;
    width: 40px;
    height: 40px;
    background: var(--light-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.info-item h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--dark-text);
}

.info-item p {
    color: var(--medium-text);
    line-height: 1.6;
    margin-bottom: 5px;
}

.social-links h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--dark-text);
}

.social-links .social-icons {
    display: flex;
    gap: 15px;
}

.social-links .social-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--light-text);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links .social-icon:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

.contact-form {
    flex: 1;
    max-width: 600px;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-form h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 2px rgba(255, 160, 0, 0.2);
}

/* Footer Section */
.footer {
    background: linear-gradient(135deg, #333333, #555555);
    color: var(--light-text);
    padding: 80px 0 20px;
    position: relative;
    overflow: hidden;
}

.footer-flex {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.footer-col {
    flex: 1;
    min-width: 220px;
}

.footer-col-brand {
    flex: 1.5;
}

.footer-col-contact {
    flex: 1.2;
}

.footer-logo {
    margin-bottom: 25px;
    position: relative;
}

.footer-logo img {
    max-width: 350px;
    height: auto;
    filter: brightness(1.1);
}

.footer-col p {
    line-height: 1.6;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.footer-social .social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-text);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.footer-social .social-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 152, 0, 0.7), rgba(255, 87, 34, 0.7));
    opacity: 0;
    transition: all 0.3s ease;
    z-index: -1;
}

.footer-social .social-icon:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-3px);
}

.footer-social .social-icon:hover::before {
    opacity: 1;
}

.footer-col h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
    font-weight: 600;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background: #FF9800;
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.footer-links a i {
    font-size: 12px;
    margin-right: 8px;
    color: #FF9800;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
}

.footer-links a:hover i {
    transform: translateX(3px);
    color: #FF5722;
}

.footer-col .contact-info p {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.footer-col .contact-info i {
    margin-right: 10px;
    color: var(--secondary-color);
}

.newsletter h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.newsletter-form {
    display: flex;
    margin-top: 15px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 5px 0 0 5px;
    font-size: 14px;
    background: rgba(255, 255, 255, 0.9);
}

.btn-subscribe {
    padding: 10px 20px;
    background: #FF9800;
    color: #fff;
    border: none;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
}

.btn-subscribe:hover {
    background: #FF5722;
    transform: translateY(-2px);
}

.footer-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.2), transparent);
    margin-bottom: 20px;
}

.footer-bottom {
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    color: var(--light-text);
}

/* Hexagonal accents for footer */
.hex-accent {
    position: absolute;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    opacity: 0.1;
    z-index: 1;
}

.footer-hex-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -50px;
    background: linear-gradient(135deg, #FF9800, #FF5722);
    transform: rotate(30deg);
}

.footer-hex-2 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    left: 10%;
    background: linear-gradient(135deg, #FF9800, #FF5722);
    transform: rotate(15deg);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .contact-flex {
        flex-direction: column;
    }
    
    .contact-info, .contact-form {
        max-width: 100%;
    }
    
    .footer-col {
        flex: 0 0 calc(50% - 20px);
    }
    
    .footer-col-brand {
        flex: 0 0 100%;
    }
}

@media (max-width: 768px) {
    .footer-col {
        flex: 0 0 100%;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .hex-accent {
        opacity: 0.05;
    }
}
