/* Custom Styles for Contact Page - Aros Kids */

/* Contact Info Section Enhancements */
.contact-info-one__item {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.contact-info-one__item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent-color, #c21181) 0%, rgba(255,255,255,0) 100%);
    opacity: 0;
    transition: all 0.4s ease;
    z-index: -1;
}

.contact-info-one__item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-color, #c21181);
}

.contact-info-one__item:hover::before {
    opacity: 0.05;
}

.contact-info-one__icon {
    transition: all 0.5s ease;
    display: inline-block;
}

.contact-info-one__item:hover .contact-info-one__icon {
    transform: scale(1.2) rotate(10deg);
    color: var(--accent-color, #c21181) !important;
}

.contact-info-one__title h3,
.contact-info-one__title p {
    transition: all 0.3s ease;
}

.contact-info-one__item:hover .contact-info-one__title h3,
.contact-info-one__item:hover .contact-info-one__title p {
    color: var(--accent-color, #c21181) !important;
}

/* Contact Form Enhancements */
.contact-one__form {
    background: #fff;
    padding: 60px;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    position: relative;
}

.form-one__control input, 
.form-one__control textarea,
.bootstrap-select > .dropdown-toggle {
    border: 2px solid #f2f2f2 !important;
    border-radius: 12px !important;
    transition: all 0.3s ease !important;
    background-color: #fafafa !important;
}

.form-one__control input:focus, 
.form-one__control textarea:focus {
    border-color: #c21181 !important;
    background-color: #fff !important;
    box-shadow: 0 5px 15px rgba(194, 17, 129, 0.1) !important;
    outline: none !important;
}

.contact-one__form .kidearn-btn {
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    z-index: 1;
}

.contact-one__form .kidearn-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300%;
    height: 300%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%) scale(0);
    border-radius: 50%;
    transition: transform 0.6s ease;
    z-index: -1;
}

.contact-one__form .kidearn-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(194, 17, 129, 0.3);
}

.contact-one__form .kidearn-btn:hover::after {
    transform: translate(-50%, -50%) scale(1);
}

/* Decorative Background Shapes */
.contact-one {
    position: relative;
    overflow: hidden;
}

.contact-one::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(194, 17, 129, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
    top: -100px;
    right: -100px;
    z-index: -1;
    animation: float 10s infinite alternate ease-in-out;
}

.contact-one::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(117, 193, 55, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
    bottom: -50px;
    left: -50px;
    z-index: -1;
    animation: float 8s infinite alternate-reverse ease-in-out;
}

@keyframes float {
    0% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(30px, 50px) rotate(10deg); }
}

/* Map Section Enhancement */
.google-map__contact {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-top: 50px;
    margin-bottom: 50px;
}

.contact-map {
    padding: 0 15px;
}

.google-map__contact iframe {
    filter: grayscale(10%) contrast(105%);
    transition: all 0.5s ease;
}

.google-map__contact:hover iframe {
    filter: grayscale(0%) contrast(110%);
}

/* Mobile Adjustments */
@media (max-width: 767px) {
    .contact-one__form {
        padding: 30px 20px;
    }
}
