


/* Contact Info Cards */
.contact-info {
    padding: 40px 30px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    height: 100%;
}

.contact-info h2.title {
    font-size: 32px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    margin-top: 5px !important;
}

.contact-info > p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 35px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 35px;
    padding: 25px;
    background: #f9f9f9;
    border-radius: 10px;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.contact-item:hover {
    background: #fff;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border-left-color: #cb8161;
    transform: translateX(5px);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #cb8161 0%, #d4956f 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(203, 129, 97, 0.3);
}

.contact-icon i {
    font-size: 24px;
    color: #fff;
}

.contact-details h3 {
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
    margin-top: 5px !important;
}

.contact-details p {
    color: #666;
    margin-bottom: 8px;
    line-height: 1.2;
    font-size: 16px;
}

.contact-details p strong {
    color: #2c3e50;
    font-weight: 600;
}

/* Social Links */
.social-links {
    margin-top: 40px;
    padding: 25px;
    background: linear-gradient(135deg, #f9f9f9 0%, #f0f0f0 100%);
    border-radius: 10px;
}

.social-links h3 {
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 20px;
    margin-top: 5px !important;
}

.social-icons {
    display: flex;
    gap: 15px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.social-icons li a {
    width: 45px;
    height: 45px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cb8161;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.social-icons li a:hover {
    background: #cb8161;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(203, 129, 97, 0.4);
}

/* Contact Form */
.contact-form {
    padding: 40px 35px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    height: 100%;
}

.contact-form h2.title {
    font-size: 32px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    margin-top: 5px !important;

}

.contact-form > p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
}

.modern-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.modern-form .form-group {
    margin-bottom: 25px;
}

.modern-form label {
    display: block;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
    font-size: 14px;
}

.modern-form .form-control {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.3s ease;
    background: #fafafa;
}

.modern-form .form-control:focus {
    outline: none;
    border-color: #cb8161;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(203, 129, 97, 0.1);
}

.modern-form select.form-control {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
}

.modern-form textarea.form-control {
    resize: vertical;
    min-height: 140px;
}

.checkbox-group {
    margin-top: 25px;
}

.custom-checkbox {
    position: relative;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    gap: 12px;
}

.checkbox-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.checkmark {
    width: 22px;
    height: 22px;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    background: #fafafa;
    transition: all 0.3s ease;
    flex-shrink: 0;
    position: relative;
}

.checkbox-label input[type="checkbox"]:checked ~ .checkmark {
    background: #cb8161;
    border-color: #cb8161;
}

.checkbox-label input[type="checkbox"]:checked ~ .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 14px;
    font-weight: bold;
}

.checkbox-label p {
    margin: 0;
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

.submit-group {
    margin-top: 30px;
}

.button-primary {
    background: linear-gradient(135deg, #cb8161 0%, #d4956f 100%);
    color: #fff;
    border: none;
    padding: 16px 40px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(203, 129, 97, 0.3);
}

.button-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(203, 129, 97, 0.4);
    background: linear-gradient(135deg, #d4956f 0%, #cb8161 100%);
}

.button-primary i {
    transition: transform 0.3s ease;
}

.button-primary:hover i {
    transform: translateX(5px);
}


.map-container h2.title {
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.map-wrapper {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
}

.map-wrapper iframe {
    display: block;
    border: 0;
}

/* FAQ Section */
.faq-container {
    max-width: 900px;
    margin: 40px auto 0;
}

.faq-item {
    background: #fff;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f9f9f9;
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
    padding-right: 20px;
}

.faq-toggle {
    width: 35px;
    height: 35px;
    background: #cb8161;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 300;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #f9f9f9;
}

.faq-answer.active {
    max-height: 500px;
    padding: 0 30px 25px;
}

.faq-answer p {
    color: #666;
    line-height: 1.8;
    margin: 0;
    padding-top: 10px;
}

/* Info Cards Section */
.quick-info-section {
    padding-top: 60px;
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 50px 0;
}

.info-card {
    background: #fff;
    padding: 35px 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border-top: 4px solid #cb8161;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.info-card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #cb8161 0%, #d4956f 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 4px 15px rgba(203, 129, 97, 0.3);
}

.info-card-icon i {
    font-size: 30px;
    color: #fff;
}

.info-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 12px;
}

.info-card p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Responsive */
@media (max-width: 991px) {

    
    .modern-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-info,
    .contact-form {
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {

    .contact-info h2.title,
    .contact-form h2.title {
        font-size: 26px;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
        padding: 10px;
        align-items: center;
    }
    
    .contact-icon {
        margin: 0 auto 15px;
    }
    .contact-info{
        padding: 0px 10px;
    }
    .contact-form{
        padding: 0px 10px;
    }
    .contact-info > p{
        margin-bottom: 10px;
    }
    .modern-form .form-control{
        padding: 5px 10px;
    }
    .map-container h2.title{
        margin-bottom: 10px;
        margin-top: 5px;
    }
    .modern-form .form-row{
        gap: 0;
    }
    .contact-form h2.title{
        margin-bottom: -5px;
        margin-top: 20px !important; 
        padding-top: 10px !important;
    }
    .contact-form > p{
        margin-bottom: 5px;
    }
    .remove-margin{
        margin-top: 0px !important;
    }
    
    .social-links{
        margin-top: 0px;
    }
    .faq-question{
        padding: 10px 15px;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .info-cards {
        grid-template-columns: 1fr;
    }
}
