/* ========================================
   KONTAKT PAGE STYLES
   ======================================== */

/* Hero Section */
.top-asystent-hero .kontakt-hero-section {
    width: 100%;
    height: 400px;
    position: relative;
    overflow: visible;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
}

.top-asystent-hero .kontakt-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.top-asystent-hero .kontakt-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.top-asystent-hero .kontakt-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.top-asystent-hero .kontakt-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 900;
    color: #ffffff;
    margin: 0;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.top-asystent-hero .kontakt-hero-overlay-image {
    position: absolute;
    bottom: -200px;
    left: 50%;
    transform: translate(-50%, -1px);
    z-index: 10;
    width: 400px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.top-asystent-hero .kontakt-hero-overlay-img {
    width: 400px;
    height: 400px;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
}

.top-asystent-hero .kontakt-page-section {
    width: 100%;
    background: #ffffff;
    padding: 80px 0;
    min-height: calc(100vh - 200px);
    position: relative;
    z-index: 5;
}

.top-asystent-hero .kontakt-content-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Main Contact Section: Data Left, Text Right */
.top-asystent-hero .kontakt-main-section {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 60px;
    align-items: start;
    margin-bottom: 80px;
}

.top-asystent-hero .kontakt-section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 700;
    color: #111111;
    text-align: center;
    margin: 0 auto 50px;
    line-height: 1.3;
    max-width: 700px;
}

.top-asystent-hero .kontakt-data-section {
    display: flex;
    flex-direction: column;
}

.top-asystent-hero .kontakt-data-item {
    margin-bottom: 35px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.3s ease;
}

.top-asystent-hero .kontakt-data-item.animate-in {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.top-asystent-hero .kontakt-data-icon {
    font-size: 1.5rem;
    color: #2d5016;
    margin-bottom: 12px;
    display: inline-block;
}

.top-asystent-hero .kontakt-data-label {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(0.85rem, 1.2vw, 0.95rem);
    font-weight: 600;
    color: #111111;
    margin: 0 0 12px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.top-asystent-hero .kontakt-data-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.top-asystent-hero .kontakt-link {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(0.85rem, 1.1vw, 0.95rem);
    font-weight: 300;
    color: rgba(0, 0, 0, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
}

.top-asystent-hero .kontakt-link:hover {
    color: #2d5016;
    text-decoration: underline;
}

.top-asystent-hero .kontakt-address {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(0.85rem, 1.1vw, 0.95rem);
    font-weight: 300;
    color: rgba(0, 0, 0, 0.7);
    margin: 0;
    line-height: 1.6;
}

/* Social Media */
.top-asystent-hero .kontakt-social-section {
    margin-top: 20px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.3s ease;
}

.top-asystent-hero .kontakt-social-section.animate-in {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.top-asystent-hero .kontakt-social-icons {
    display: flex;
    gap: 20px;
}

.top-asystent-hero .kontakt-social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #2d5016;
    color: #ffffff;
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.top-asystent-hero .kontakt-social-link:hover {
    background: #1a3009;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(45, 80, 22, 0.3);
}

/* About Section */
.top-asystent-hero .kontakt-about-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.top-asystent-hero .kontakt-about-text {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(0.9rem, 1.2vw, 1rem);
    font-weight: 300;
    color: rgba(0, 0, 0, 0.7);
    line-height: 1.7;
    margin: 0;
}

/* Contact Form Section */
.top-asystent-hero .kontakt-form-section {
    margin-top: 80px;
}

.top-asystent-hero .kontakt-form-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #111111;
    margin: 0 0 40px;
    line-height: 1.3;
    text-align: center;
}

.top-asystent-hero .kontakt-form {
    max-width: 800px;
    margin: 0 auto;
    background: #ffffff;
    border: 2px solid #f0f0f0;
    border-radius: 12px;
    padding: 50px 40px;
}

.top-asystent-hero .kontakt-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.top-asystent-hero .kontakt-form-group {
    margin-bottom: 30px;
}

.top-asystent-hero .kontakt-form-label {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(0.9rem, 1.2vw, 1rem);
    font-weight: 500;
    color: #111111;
    margin: 0 0 10px;
    display: block;
}

.top-asystent-hero .kontakt-form-label .required {
    color: #d32f2f;
}

.top-asystent-hero .kontakt-form-input,
.top-asystent-hero .kontakt-form-textarea {
    width: 100%;
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(0.9rem, 1.2vw, 1rem);
    font-weight: 300;
    color: #111111;
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    background: #ffffff;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.top-asystent-hero .kontakt-form-input:focus,
.top-asystent-hero .kontakt-form-textarea:focus {
    outline: none;
    border-color: #2d5016;
    box-shadow: 0 0 0 3px rgba(45, 80, 22, 0.1);
}

.top-asystent-hero .kontakt-form-textarea {
    resize: vertical;
    min-height: 150px;
}

.top-asystent-hero .kontakt-form-submit {
    position: relative;
    width: 100%;
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1rem, 1.3vw, 1.1rem);
    font-weight: 600;
    color: #ffffff;
    background: #2d5016;
    border: 4px solid transparent;
    border-radius: 100px;
    box-shadow: 0 0 0 2px #2d5016;
    padding: 18px 36px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.top-asystent-hero .kontakt-form-submit svg {
    position: absolute;
    width: 24px;
    height: 24px;
    fill: #ffffff;
    z-index: 9;
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.top-asystent-hero .kontakt-form-submit .submit-arr-1 {
    right: 16px;
}

.top-asystent-hero .kontakt-form-submit .submit-arr-2 {
    left: -25%;
}

.top-asystent-hero .kontakt-form-submit .submit-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background-color: #ffffff;
    border-radius: 50%;
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.top-asystent-hero .kontakt-form-submit .submit-text {
    position: relative;
    z-index: 1;
    transform: translateX(-12px);
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.top-asystent-hero .kontakt-form-submit:hover {
    box-shadow: 0 0 0 12px transparent;
    color: #2d5016;
    border-radius: 12px;
    background: #ffffff;
    border: 1px solid #000000;
}

.top-asystent-hero .kontakt-form-submit:hover .submit-arr-1 {
    right: -25%;
}

.top-asystent-hero .kontakt-form-submit:hover .submit-arr-2 {
    left: 16px;
}

.top-asystent-hero .kontakt-form-submit:hover .submit-text {
    transform: translateX(12px);
}

.top-asystent-hero .kontakt-form-submit:hover svg {
    fill: #2d5016;
}

.top-asystent-hero .kontakt-form-submit:hover .submit-circle {
    width: 220px;
    height: 220px;
    opacity: 1;
}

.top-asystent-hero .kontakt-form-submit:active {
    scale: 0.95;
    box-shadow: 0 0 0 4px #2d5016;
}

.top-asystent-hero .kontakt-form-submit:disabled {
    background: #cccccc;
    cursor: not-allowed;
    transform: none;
}

/* Responsive */
@media (max-width: 768px) {
    .top-asystent-hero .kontakt-hero-section {
        height: 400px;
    }
    
    .top-asystent-hero .kontakt-hero-title {
        font-size: clamp(2rem, 8vw, 3.5rem);
    }
    
    .top-asystent-hero .kontakt-hero-overlay-image {
        width: 300px;
        height: 300px;
        bottom: -150px;
        transform: translate(-50%, -1px);
    }
    
    .top-asystent-hero .kontakt-hero-overlay-img {
        width: 300px;
        height: 300px;
    }
    
    .top-asystent-hero .kontakt-page-section {
        padding: 60px 0 40px;
    }
    
    .top-asystent-hero .kontakt-content-container {
        padding: 0 24px;
    }
    
    .top-asystent-hero .kontakt-main-section {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 60px;
    }
    
    .top-asystent-hero .kontakt-about-section {
        order: -1;
    }
    
    .top-asystent-hero .kontakt-form-section {
        margin-top: 60px;
    }
    
    .top-asystent-hero .kontakt-form {
        padding: 40px 30px;
    }
    
    .top-asystent-hero .kontakt-form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

@media (max-width: 480px) {
    .top-asystent-hero .kontakt-page-section {
        padding: 60px 0 30px;
    }
    
    .top-asystent-hero .kontakt-content-container {
        padding: 0 20px;
    }
    
    .top-asystent-hero .kontakt-form {
        padding: 30px 20px;
    }
    
    .top-asystent-hero .kontakt-info-item {
        padding: 30px 20px;
    }
}

