/* Section Title Styling */
.section-title .sub-title {
    font-size: 18px;
    font-weight: 500;
    color: #5f2dee;
    display: block;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-block;
}

.section-title .title {
    font-size: 42px;
    font-weight: 700;
    color: #222;
    margin-bottom: 20px;
}

.section-title p {
    font-size: 18px;
    line-height: 1.8;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

/* Contact Address Styling */
.contact-address {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.contact-address i {
    font-size: 32px;
    color: #5f2dee;
    margin-bottom: 15px;
    display: inline-block;
}

.contact-address p {
    font-size: 20px;
    color: #222;
    margin-bottom: 5px;
    font-weight: 500;
}

.contact-address span {
    font-size: 16px;
    color: #666;
}

/* Contact Info Icons Styling */
.contact-info-item {
    padding: 40px 30px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-info-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(95, 45, 238, 0.1);
}

.contact-info-item i {
    font-size: 46px;
    color: #5f2dee;
    margin-bottom: 25px;
    display: inline-block;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.contact-info-item i:before {
    position: relative;
    z-index: 2;
}

.contact-info-item i:after {
    content: '';
    position: absolute;
    width: 80px;
    height: 80px;
    background: rgba(95, 45, 238, 0.1);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    transition: all 0.3s ease;
}

.contact-info-item:hover i {
    color: #fff;
}

.contact-info-item:hover i:after {
    background: #5f2dee;
    width: 90px;
    height: 90px;
}

.contact-info-item .title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #222;
}

.contact-info-item p {
    font-size: 18px;
    color: #5f2dee;
    margin-bottom: 5px;
}

.contact-info-item p a {
    color: #5f2dee;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-info-item p a:hover {
    color: #4517c7;
}

.contact-info-item span {
    font-size: 14px;
    color: #666;
    display: block;
}

/* Additional Responsive Styles */
@media (max-width: 767px) {
    .section-title .sub-title {
        font-size: 16px;
    }
    
    .section-title .title {
        font-size: 32px;
    }
    
    .section-title p {
        font-size: 16px;
    }
    
    .contact-address {
        padding: 20px;
    }
    
    .contact-address i {
        font-size: 28px;
    }
    
    .contact-address p {
        font-size: 18px;
    }
    
    .contact-address span {
        font-size: 14px;
    }
    
    .contact-info-item {
        padding: 30px 20px;
    }
    
    .contact-info-item i {
        font-size: 36px;
    }
    
    .contact-info-item i:after {
        width: 60px;
        height: 60px;
    }
    
    .contact-info-item:hover i:after {
        width: 70px;
        height: 70px;
    }
    
    .contact-info-item .title {
        font-size: 20px;
    }
    
    .contact-info-item p {
        font-size: 16px;
    }
} 