/* CSS for page: Kontaktai Aciu (Thank You Page) */

body {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.page-kontaktai-aciu {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thank-you-section {
    width: 100%;
    padding: var(--spacing-lg) var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.thank-you-container {
    max-width: 600px;
    width: 100%;
    background-color: var(--color-white);
    border-radius: var(--border-radius);
    padding: var(--spacing-xl) var(--spacing-lg);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Success Icon */
.success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--spacing-lg);
    animation: scaleIn 0.5s ease-out 0.2s both;
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.success-icon svg {
    width: 100%;
    height: 100%;
}

.success-icon-circle {
    stroke: #13ce66;
    stroke-width: 2;
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) 0.3s forwards;
}

.success-icon-check {
    stroke: #13ce66;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

@keyframes stroke {
    to {
        stroke-dashoffset: 0;
    }
}

/* Typography */
.thank-you-container h1 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
    color: var(--color-text);
    animation: fadeIn 0.6s ease-out 0.4s both;
}

.thank-you-message {
    font-size: 1.125rem;
    color: var(--color-text-light);
    margin-bottom: var(--spacing-lg);
    line-height: 1.7;
    animation: fadeIn 0.6s ease-out 0.5s both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Contact Details */
.contact-details {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-lg);
    padding: var(--spacing-md) 0;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    animation: fadeIn 0.6s ease-out 0.6s both;
}

.detail-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
}

.detail-icon {
    width: 24px;
    height: 24px;
    color: var(--color-accent);
    flex-shrink: 0;
}

.detail-item p {
    margin: 0;
    color: var(--color-text);
    font-size: 0.95rem;
}

/* Buttons */
.button-group {
    display: flex;
    gap: var(--spacing-sm);
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeIn 0.6s ease-out 0.7s both;
}

.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: var(--border-radius);
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    font-family: var(--font-primary);
}

.btn-primary {
    background-color: var(--color-text);
    color: var(--color-white);
    border-color: var(--color-text);
}

.btn-primary:hover {
    background-color: var(--color-accent);
    border-color: var(--color-accent);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-text);
    border-color: var(--color-border);
}

.btn-secondary:hover {
    background-color: var(--color-primary);
    border-color: var(--color-accent);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .thank-you-container {
        padding: var(--spacing-lg) var(--spacing-md);
    }
    
    .thank-you-container h1 {
        font-size: 2rem;
    }
    
    .thank-you-message {
        font-size: 1rem;
    }
    
    .success-icon {
        width: 60px;
        height: 60px;
    }
    
    .button-group {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
    
    .contact-details {
        gap: var(--spacing-md);
    }
    
    .detail-item {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .thank-you-container h1 {
        font-size: 1.75rem;
    }
    
    .thank-you-section {
        padding: var(--spacing-md);
    }
}
