/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');



/* Hero Section */
.hero {
    background-color: #f0f2f5;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero h1 {
    font-size: 28px;
    color: #1e293b;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.breadcrumb {
    color: #666;
    position: relative;
    z-index: 2;
}

.breadcrumb a {
    color: #6C5CE7;
}

/* Background Shapes */
.shape {
    position: absolute;
    z-index: 1;
}

.shape-dots {
    top: 20%;
    left: 5%;
    width: 80px;
    height: 80px;
    background-image: radial-gradient(#ff6b6b 2px, transparent 2px);
    background-size: 15px 15px;
}

.shape-wave {
    left: 20%;
    bottom: 20%;
    width: 100px;
    height: 20px;
    background: repeating-linear-gradient(
        to right,
        #6C5CE7,
        #6C5CE7 5px,
        transparent 5px,
        transparent 10px
    );
    border-radius: 10px;
}

.shape-star {
    top: 20%;
    right: 10%;
    width: 50px;
    height: 50px;
    color: #9c88ff;
}

.shape-star::before {
    content: "★";
    font-size: 50px;
    position: absolute;
}

.shape-circle {
    bottom: 20%;
    right: 20%;
    width: 80px;
    height: 80px;
    border: 3px solid #ff6b6b;
    border-radius: 50%;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
}

.contact-container {
    display: flex;
    background-color: #f5f5f5;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-info {
    width: 40%;
    background: linear-gradient(135deg, #6C5CE7, #8A7BF7);
    color: white;
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.contact-info h2 {
    font-size: 32px;
    margin-bottom: 15px;
}
w
.contact-info > p {
    margin-bottom: 40px;
    opacity: 0.9;
}

.info-box {
    margin-bottom: 40px;
}

.info-item {
    display: flex;
    margin-bottom: 25px;
}

.info-item .icon {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.info-item .content h4 {
    font-size: 16px;
    margin-bottom: 5px;
}

.info-item .content p {
    margin: 0;
    font-size: 15px;
}

.info-item .content .small {
    font-size: 12px;
    opacity: 0.8;
}

.customer-care {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #5D4FD9;
    padding: 15px 40px;
    display: flex;
    align-items: center;
}

.care-icon {
    width: 30px;
    height: 30px;
    background-color: white;
    color: #6C5CE7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}

.social-links {
    margin-left: auto;
    display: flex;
    gap: 10px;
}

.social-links a {
    width: 30px;
    height: 30px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
}

.social-links a:hover {
    background-color: rgba(255, 255, 255, 0.4);
}

.contact-form {
    width: 60%;
    padding: 40px;
    background-color: #7a6bef0f;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

.required {
    color: #ff6b6b;
    margin-left: 3px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #6C5CE7;
}

.submit-btn {
    background-color: #6C5CE7;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background-color: #5D4FD9;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .contact-container {
        flex-direction: column;
    }

    .contact-info,
    .contact-form {
        width: 100%;
    }

    .customer-care {
        position: relative;
        margin-top: 30px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .top-bar .container {
        flex-direction: column;
        gap: 10px;
    }

    .footer-info {
        flex-direction: column;
        gap: 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 576px) {
    .nav-links {
        display: none;
    }

    .hero h1 {
        font-size: 36px;
    }

    .contact-info {
        padding: 30px 20px;
    }

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

    .customer-care {
        padding: 15px 20px;
        flex-wrap: wrap;
    }

    .social-links {
        margin-left: 0;
        margin-top: 10px;
        width: 100%;
        justify-content: center;
    }
}
