/* 
 * Contact Page CSS
 * KlinikPlus
 */

.contact-page {
    position: relative;
    overflow: hidden;
    background-color: #FFFFFF;
    padding-bottom: 120px;
}

/* Decorative Backgrounds */
.contact-decorative-bg-left {
    position: absolute;
    top: 50%;
    left: -20%;
    width: 76.16669rem;
    height: 76.16669rem;
    flex-shrink: 0;
    border-radius: 76.16669rem;
    opacity: 0.1;
    background: linear-gradient(180deg, #FF8E6C 0%, #FF8E6C 100%);
    filter: blur(133.33334350585938px);
    z-index: 1;
    pointer-events: none;
    transform: translateY(-50%);
}

.contact-decorative-bg-right {
    position: absolute;
    top: 15%;
    right: -10%;
    width: 50.16669rem;
    height: 50.16669rem;
    flex-shrink: 0;
    border-radius: 50.16669rem;
    opacity: 0.1;
    background: linear-gradient(180deg, #FF8E6C 0%, #FF8E6C 100%);
    filter: blur(133.33334350585938px);
    z-index: 1;
    pointer-events: none;
}

/* Breadcrumb Section */
.breadcrumb-section {
    padding-top: 100px;
    padding-bottom: 20px;
    position: relative;
    z-index: 10;
}

.breadcrumb-content {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    z-index: 5;
}

.breadcrumb-links {
    display: flex;
    align-items: center;
}

.breadcrumb-link {
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-link:hover {
    color: #FF8E6C;
}

.breadcrumb-separator {
    width: 20px;
    height: 1px;
    background-color: #D0D0D0;
    margin: 0 10px;
    position: relative;
    display: inline-block;
}

.breadcrumb-separator::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: #D0D0D0;
}

.breadcrumb-current {
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #FF8E6C;
}

/* Contact Main Section */
.contact-main-section {
    padding-top: 20px;
    padding-bottom: 60px;
}

.contact-heading-container {
    text-align: left;
    margin-bottom: 60px;
    position: relative;
}

.contact-heading {
    font-family: 'Outfit', sans-serif;
    font-size: 54px;
    font-weight: 700;
    color: #1B1B1B;
    margin: 0;
    line-height: 1.2;
}

/* Contact Info Cards */
.contact-info-container {
    display: flex;
    justify-content: center;
    margin: 0 auto;
    width: 100%;
}

.contact-info-unified-card {
    width: 100%;
    display: flex;
    justify-content: space-between;
    background: #FFFFFF;
    border-radius: 2.66669rem;
    border: 1.333px solid #E0DFDF;
    padding: 30px 40px;
    margin-bottom: 60px;
    box-sizing: border-box;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 20px;
    width: 33.33%;
    padding: 0 15px;
}

.contact-info-icon {
    width: 64px;
    height: 64px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.contact-info-icon img {
    width: 100%;
    height: auto;
}

.contact-info-content {
    flex: 1;
}

.contact-info-title {
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #1B1B1B;
    margin: 0 0 8px 0;
}

.contact-info-detail {
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #666666;
    margin: 2px 0;
    line-height: 1.4;
}

/* Map and Contact Form Section */
.map-contact-section {
    padding: 40px 0;
    position: relative;
    z-index: 10;
}

.map-contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    background: #F9FAFB;
    border-radius: 24px;
    box-shadow: 0px 8px 30px rgba(149, 157, 165, 0.15);
    overflow: hidden;
}

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

.contact-form-area {
    padding: 50px;
    background-color: #F9FAFB;
    border-radius: 20px;
}

.contact-form-title {
    font-family: 'Outfit', sans-serif;
    font-size: 2.25rem;
    font-weight: 500;
    color: #111827;
    margin: 0 0 10px 0;
    text-align: left;
    line-height: 2.41875rem;
    letter-spacing: 0.01344rem;
}

.contact-form-subtitle {
    font-family: 'Outfit', sans-serif;
    font-size: 1.20938rem;
    font-weight: 400;
    color: #373737;
    margin: 0 0 30px 0;
    line-height: 1.88125rem;
    text-align: left;
}

.contact-form {
    display: flex;
    flex-direction: column;
}

.form-group {
    width: 100%;
    margin-bottom: 1rem;
}

.contact-form-label {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 0.9375rem;
    font-weight: 500;
    color: #373737;
    margin-bottom: 0.5rem;
}

.form-control {
    width: 100%;
    height: 56px;
    background: #FFFFFF;
    border: 1px solid #EEEEEE;
    border-radius: 12px;
    padding: 20px;
    font-family: 'Outfit', sans-serif;
    font-size: 1.075rem;
    font-weight: 400;
    color: #373737;
    outline: none;
    transition: border-color 0.3s ease;
    text-align: left;
}

.form-control:focus {
    border-color: #FF8E6C;
}

.form-control::placeholder {
    color: #373737;
    font-family: 'Outfit', sans-serif;
    font-size: 1.075rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    opacity: 0.7;
}

.form-textarea {
    width: 100%;
    height: 160px;
    background: #FFFFFF;
    border: 1px solid #EEEEEE;
    border-radius: 12px;
    padding: 20px;
    font-family: 'Outfit', sans-serif;
    font-size: 1.075rem;
    font-weight: 400;
    color: #373737;
    outline: none;
    resize: none;
    transition: border-color 0.3s ease;
    text-align: left;
}

.form-textarea:focus {
    border-color: #FF8E6C;
}

.form-textarea::placeholder {
    color: #373737;
    font-family: 'Outfit', sans-serif;
    font-size: 1.075rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    opacity: 0.7;
}

.contact-submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 60px;
    background: #FF8E6C;
    border-radius: 30px;
    border: none;
    padding: 0 30px;
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #FFFFFF;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
}

.contact-submit-btn:hover {
    background-color: #FF7A53;
}

.contact-submit-btn svg {
    stroke: currentColor;
}

/* Contact Page Elements */
.contact-page-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
    overflow: visible;
}

.contact-element {
    position: absolute;
}

.phone-element {
    top: 25%;
    left: 2%;
    animation: float 6s ease-in-out infinite;
    z-index: 5;
}

.mail-element {
    top: 120px;
    right: 10%;
    animation: float 8s ease-in-out infinite;
    z-index: 5;
}

.calendar-element {
    top: 80px;
    right: 20%;
    animation: float 7s ease-in-out infinite 1s;
    z-index: 5;
}

.q-mark-element {
    top: 30%;
    right: 2%;
    animation: float 9s ease-in-out infinite 2s;
    z-index: 5;
}

.round-element {
    top: 50%;
    left: 50%;
    animation: float 10s ease-in-out infinite 1.5s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Media Queries */
@media (max-width: 1024px) {
    .contact-element {
        display: none;
    }
}

@media (max-width: 1200px) {
    .contact-heading {
        font-size: 48px;
    }
    
    .contact-decorative-bg-left {
        width: 60rem;
        height: 60rem;
        filter: blur(120px);
    }
    
    .contact-decorative-bg-right {
        width: 40rem;
        height: 40rem;
        filter: blur(120px);
    }
}

@media (max-width: 992px) {
    .map-contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .map-area {
        height: 400px;
    }
    
    .contact-info-unified-card {
        flex-direction: column;
        gap: 30px;
        padding: 30px;
    }
    
    .contact-info-item {
        width: 100%;
        padding: 0;
    }
    
    .contact-heading {
        font-size: 42px;
    }
    
    .contact-form-area {
        padding: 30px;
        border-radius: 15px;
    }
    
    .contact-form-title {
        font-size: 2rem;
        line-height: 2.2rem;
    }
    
    .contact-form-subtitle {
        font-size: 1.1rem;
        line-height: 1.7rem;
    }
    
    .contact-decorative-bg-left {
        width: 45rem;
        height: 45rem;
        left: -25%;
        filter: blur(100px);
        opacity: 0.08;
    }
    
    .contact-decorative-bg-right {
        width: 30rem;
        height: 30rem;
        right: -15%;
        filter: blur(100px);
        opacity: 0.08;
    }
}

@media (max-width: 768px) {
    .breadcrumb-section {
        padding-top: 80px;
    }
    
    .contact-heading {
        font-size: 36px;
    }
    
    .contact-form-title {
        font-size: 30px;
    }
    
    .contact-info-title {
        font-size: 20px;
    }
    
    .contact-info-unified-card {
        padding: 25px;
        border-radius: 2rem;
    }
    
    .contact-form-area {
        padding: 25px;
        border-radius: 15px;
    }
    
    .contact-submit-btn {
        height: 55px;
    }
    
    .contact-decorative-bg-left {
        width: 35rem;
        height: 35rem;
        left: -30%;
        filter: blur(80px);
        opacity: 0.06;
    }
    
    .contact-decorative-bg-right {
        width: 25rem;
        height: 25rem;
        right: -20%;
        filter: blur(80px);
        opacity: 0.06;
    }
}

@media (max-width: 576px) {
    .breadcrumb-section {
        padding-top: 60px;
    }
    
    .contact-heading {
        font-size: 32px;
    }
    
    .contact-main-section {
        padding-bottom: 40px;
    }
    
    .map-contact-section {
        padding: 20px 0;
    }
    
    .map-area {
        height: 300px;
    }
    
    .contact-form-area {
        padding: 20px;
        border-radius: 12px;
    }
    
    .contact-form-title {
        font-size: 26px;
    }
    
    .contact-page {
        padding-bottom: 80px;
    }
    
    .contact-info-unified-card {
        padding: 20px;
        border-radius: 1.5rem;
    }
    
    .contact-info-item {
        gap: 15px;
    }
    
    .contact-info-icon {
        width: 50px;
        height: 50px;
    }
    
    .contact-submit-btn {
        height: 50px;
        border-radius: 25px;
        font-size: 16px;
    }
    
    .contact-decorative-bg-left {
        width: 25rem;
        height: 25rem;
        left: -40%;
        filter: blur(60px);
        opacity: 0.05;
    }
    
    .contact-decorative-bg-right {
        width: 20rem;
        height: 20rem;
        right: -25%;
        filter: blur(60px);
        opacity: 0.05;
    }
} 