/* Page Header */
.page-header {
    position: relative;
    padding: 80px 0;
    background-color: var(--secondary-color);
    text-align: center;
}

.page-header h1 {
    color: #fff;
    font-size: 42px;
    margin-bottom: 15px;
}

.breadcrumb {
    background: none;
    display: inline-flex;
    padding: 0;
    margin: 0;
}

.breadcrumb-item {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb-item a {
    color: #fff;
}

.breadcrumb-item.active {
    color: var(--accent-color);
}

.breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
}

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

.contact-info-box {
    background: #fff;
    border-radius: var(--border-radius);
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    place-content: center;
    margin-bottom: 30px;
}

.contact-info-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.contact-info-box::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    background: var(--primary-color);
    bottom: 0;
    left: 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.contact-info-box:hover::after {
    transform: scaleX(1);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: var(--light-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: background 0.3s ease;
}

.contact-info-box:hover .contact-icon {
    background: var(--primary-color);
}

.contact-icon i {
    font-size: 28px;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.contact-info-box:hover .contact-icon i {
    color: #fff;
}

.bottom-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.bottom-content a,
.bottom-content p {
    font-size: 16px;
    color: #666;
    margin: 0;
    transition: color 0.3s ease;
}

.bottom-content a:hover {
    color: var(--primary-color);
}

/* Form Section */
.contact-form-section {
    padding: 80px 0;
    background-color: var(--light-blue);
    position: relative;
}

.contact-form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(0, 86, 179, 0.2), transparent);
}

.contact-form-section h2 {
    font-size: 36px;
    margin-bottom: 40px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.contact-form-section h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 3px;
    background-color: var(--accent-color);
}

.contact-form {
    background: #fff;
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.form-field input,
.form-field textarea {
    width: 100%;
    height: 55px;
    background: #f9f9f9;
    border: 1px solid #eee;
    border-radius: var(--border-radius);
    padding: 0 20px;
    font-size: 15px;
    color: #666;
    transition: all 0.3s ease;
}

.form-field textarea {
    height: 202px !important;
    padding: 15px 20px;
    resize: none;
}

.form-field input:focus,
.form-field textarea:focus {
    background: #fff;
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(0, 86, 179, 0.1);
}

.form-btn {
    text-align: right;
}

.form-btn .btn-submit {
    background: var(--primary-color);
    color: #fff;
    border: none;
    padding: 15px 40px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
      border-radius: 8px !important;
  width: 100% !important;
}

.form-btn .btn-submit:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Map Section */
.map-section {
    position: relative;
    overflow: hidden;
    height: 450px;
}

.map-container {
    width: 100%;
    height: 100%;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Support Section */
.support-section {
    padding: 80px 0;
    background-color: #fff;
}

.support-item {
    background: #fff;
    border-radius: var(--border-radius);
    padding: 40px 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.support-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: var(--light-blue);
    transition: height 0.3s ease;
    z-index: -1;
}

.support-item:hover::before {
    height: 100%;
}

.support-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.icon-area {
    margin-bottom: 25px;
}

.icon-area img {
    max-width: 70px;
    transition: transform 0.3s ease;
}

.support-item:hover .icon-area img {
    transform: scale(1.1);
}

.support-title {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.support-text {
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* Loading Spinner */
.spinner-border {
    display: inline-block;
    width: 1rem;
    height: 1rem;
    vertical-align: text-bottom;
    border: .2em solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    animation: spinner-border .75s linear infinite;
}

@keyframes spinner-border {
    to {
        transform: rotate(360deg);
    }
}

.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    border: 0 !important;
}

.ms-2 {
    margin-left: 0.5rem;
}

/* Recaptcha styling */
.g-recaptcha {
    margin-bottom: 20px;
}

/* Form validation styling */
.form-field.error input,
.form-field.error textarea {
    border-color: #f44336;
}

.error-message {
    color: #f44336;
    font-size: 13px;
    margin-top: 5px;
    display: none;
}

.form-field.error .error-message {
    display: block;
}

/* Working Hours Section */
.working-hours-section {
    background-color: var(--light-blue);
    position: relative;
}

.working-hours-content h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: var(--secondary-color);
    position: relative;
    padding-bottom: 15px;
}

.working-hours-content h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 70px;
    height: 3px;
    background-color: var(--accent-color);
}

.working-hours-list {
    margin-bottom: 25px;
}

.working-day {
    padding: 12px 0;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
}

.working-day:last-child {
    border-bottom: none;
}

.working-day .day {
    font-weight: 600;
    color: var(--secondary-color);
}

.working-day .hours {
    color: var(--primary-color);
    font-weight: 500;
}

.working-hours-image {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

/* Add root variables for consistent styling */
:root {
    --border-radius: 8px;
    --btn-radius: 30px;
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --transition-speed: 0.3s;
}