.hero-contact {
    height: 60vh;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.background-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 2s ease-in-out;
    background-size: 60%;
    background-position: center;
    background-repeat: no-repeat;
    filter: brightness(0.45) blur(1px);
}

.background-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(232, 197, 216, 0.1) 0%, rgba(10, 10, 10, 0.5) 100%);
    z-index: 1;
}

.hero-content {
    text-align: center;
    z-index: 3;
    max-width: 800px;
    position: relative;
    animation: heroContentFadeIn 1.2s ease-out;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.1;
}

.title-line {
    display: block;
    opacity: 0;
    animation: titleSlideIn 1s ease-out forwards;
}

.title-line:nth-child(1) {
    animation-delay: 0.3s;
    color: #fff;
}

.title-line:nth-child(2) {
    animation-delay: 0.6s;
}

.gradient-text {
    background: linear-gradient(135deg, #e8c5d8 0%, #ffffff 50%, #e8c5d8 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: gradientShift 3s ease-in-out infinite;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.8s forwards;
}

.hero-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    display: none;
}

.floating-shapes {
    position: relative;
    width: 100%;
    height: 100%;
    display: none;
}

.shape {
    display: none;
}

.contact-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    position: relative;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info {
    opacity: 0;
    animation: slideInLeft 0.8s ease-out 0.2s forwards;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: left;
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
}

.title-decoration {
    width: 50px;
    height: 3px;
    background: linear-gradient(135deg, #e8c5d8, #ffffff);
    border-radius: 2px;
}

.info-cards {
    display: grid;
    gap: 25px;
    margin-bottom: 40px;
}

.info-card {
    background: rgba(51, 51, 51, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 25px;
    border: 1px solid rgba(85, 85, 85, 0.5);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(232, 197, 216, 0.1), transparent);
    transition: left 0.6s ease;
    z-index: 1;
}

.info-card:hover::before {
    left: 100%;
}

.info-card:hover {
    transform: translateY(-5px);
    border-color: rgba(232, 197, 216, 0.5);
    box-shadow: 0 10px 30px rgba(232, 197, 216, 0.1);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #e8c5d8, #d4a5c4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.info-icon img {
    width: 28px;
    height: 28px;
    filter: brightness(0) invert(1);
}

.info-content {
    position: relative;
    z-index: 2;
}

.info-content h3 {
    font-size: 1.2rem;
    color: #e8c5d8;
    margin-bottom: 8px;
    font-weight: 600;
}

.info-content p {
    color: rgba(204, 204, 204, 0.9);
    line-height: 1.5;
    font-size: 14px;
}

.contact-form-container {
    opacity: 0;
    animation: slideInRight 0.8s ease-out 0.2s forwards;
}

.contact-form {
    background: rgba(51, 51, 51, 0.8);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(85, 85, 85, 0.5);
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(232, 197, 216, 0.05) 0%, transparent 70%);
    z-index: 1;
}

.form-title {
    font-size: 2rem;
    color: #e8c5d8;
    margin-bottom: 10px;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.form-subtitle {
    color: rgba(204, 204, 204, 0.9);
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    position: relative;
    z-index: 2;
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #e8c5d8;
    font-weight: 500;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: rgba(34, 34, 34, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(85, 85, 85, 0.5);
    border-radius: 10px;
    color: #fff;
    font-size: 14px;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #e8c5d8;
    background: rgba(34, 34, 34, 1);
    box-shadow: 0 0 20px rgba(232, 197, 216, 0.1);
    transform: scale(1.02);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(204, 204, 204, 0.5);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.char-count {
    position: absolute;
    bottom: -25px;
    right: 0;
    font-size: 12px;
    color: rgba(204, 204, 204, 0.6);
}

.form-error {
    display: block;
    color: #ff4757;
    font-size: 12px;
    margin-top: 5px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.form-error.show {
    opacity: 1;
}

.checkbox-group {
    margin-bottom: 25px !important;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    user-select: none;
    padding: 5px 0;
    position: relative;
}

.checkbox-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    width: 18px;
    height: 18px;
    min-width: 18px;
    min-height: 18px;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid #e8c5d8;
    border-radius: 4px;
    position: relative;
    flex-shrink: 0;
    transition: all 0.3s ease;
    margin-top: 2px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    display: inline-block;
}

.checkmark::after {
    content: '';
    position: absolute;
    display: none;
    left: 5px;
    top: 1px;
    width: 4px;
    height: 9px;
    border: solid #000;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-label:hover .checkmark {
    border-color: #ffffff;
    background: rgba(232, 197, 216, 0.15);
    transform: scale(1.05);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: linear-gradient(135deg, #e8c5d8, #d4a5c4);
    border-color: #e8c5d8;
    box-shadow: 0 4px 12px rgba(232, 197, 216, 0.4);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    display: block;
}

.checkbox-text {
    flex: 1;
    line-height: 1.5;
    padding-top: 1px;
}

.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #e8c5d8, #d4a5c4);
    color: #000;
    border: none;
    padding: 18px 30px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 10px;
    z-index: 10;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s ease;
    z-index: -1;
}

.submit-btn:hover::before {
    left: 100%;
}

.submit-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(232, 197, 216, 0.4);
}

.submit-btn:active {
    transform: translateY(0px);
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.btn-text {
    display: block;
    position: relative;
    z-index: 2;
}

.btn-loader {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    z-index: 2;
}

.submit-btn.loading .btn-text {
    display: none;
}

.submit-btn.loading .btn-loader {
    display: flex;
}

.spinner {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(0, 0, 0, 0.3);
    border-top: 2px solid #000;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.faq-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    position: relative;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 80% 50%, rgba(232, 197, 216, 0.05) 0%, transparent 50%);
    z-index: 1;
}

.faq-section .section-title {
    text-align: center;
    justify-content: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.faq-item {
    background: rgba(51, 51, 51, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    margin-bottom: 20px;
    border: 1px solid rgba(85, 85, 85, 0.5);
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    animation: slideInUp 0.6s ease-out forwards;
}

.faq-item:nth-child(1) { animation-delay: 0.1s; }
.faq-item:nth-child(2) { animation-delay: 0.2s; }
.faq-item:nth-child(3) { animation-delay: 0.3s; }
.faq-item:nth-child(4) { animation-delay: 0.4s; }
.faq-item:nth-child(5) { animation-delay: 0.5s; }

.faq-question {
    padding: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.faq-question::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(232, 197, 216, 0.1), transparent);
    transition: left 0.6s ease;
    z-index: 1;
}

.faq-question:hover::before {
    left: 100%;
}

.faq-question h3 {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    position: relative;
    z-index: 2;
}

.faq-icon {
    font-size: 24px;
    color: #e8c5d8;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 2;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 25px 25px;
    color: rgba(204, 204, 204, 0.9);
    line-height: 1.6;
    margin: 0;
}

@keyframes heroContentFadeIn {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes titleSlideIn {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
    20%, 40%, 60%, 80% { transform: translateX(5px); }
}

@media (max-width: 1200px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .contact-grid {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .hero-contact {
        height: 50vh;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .section-title {
        font-size: 1.8rem;
        text-align: center;
        justify-content: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .contact-form {
        padding: 30px 25px;
    }
    
    .info-cards {
        grid-template-columns: 1fr;
    }
    
    .action-buttons {
        grid-template-columns: 1fr;
    }
    
    .faq-question {
        padding: 20px;
    }
    
    .faq-answer p {
        padding: 0 20px 20px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .contact-form {
        padding: 25px 20px;
    }
    
    .form-title {
        font-size: 1.5rem;
    }
    
    .info-card {
        padding: 20px;
        flex-direction: column;
        text-align: center;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
}