/* Contact Page Advanced Styles */

/* Hero Section */
.contact-hero-advanced {
    position: relative;
    min-height: 350px;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    overflow: hidden;
    padding: 180px 0 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-hero-advanced .container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    background-image: radial-gradient(circle, #D4AA40 1px, transparent 1px);
    background-size: 50px 50px;
    animation: float 20s infinite linear;
}

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

.hero-bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(212, 170, 64, 0.1) 0%, transparent 70%);
}

.contact-hero-advanced .hero-content {
    position: relative;
    z-index: 2;
    text-align: center !important;
    color: white;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

.contact-hero-advanced .hero-badge {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #D4AA40, #BF9835) !important;
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 10px 40px rgba(212, 170, 64, 0.4);
    animation: pulse 2s infinite;
}

.contact-hero-advanced .hero-badge i {
    font-size: 2.5rem;
    color: #000000 !important;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.contact-hero-advanced .hero-title {
    margin-bottom: 20px;
}

.contact-hero-advanced .title-main {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #D4AA40, #F2E8C9, #BF9835);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-gradient {
    display: block;
    font-size: 56px;
    font-weight: bold;
    background: linear-gradient(90deg, #fff, rgba(255, 255, 255, 0.7));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-hero-advanced .hero-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto 30px;
    line-height: 1.6;
    color: #aaaaaa;
}

.contact-hero-advanced .hero-features {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.contact-hero-advanced .feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    border: 1px solid rgba(212, 170, 64, 0.3);
    padding: 12px 25px;
    border-radius: 30px;
    backdrop-filter: blur(10px);
    color: #aaaaaa;
    transition: all 0.3s ease;
}

.contact-hero-advanced .feature-item:hover {
    border-color: #D4AA40;
    background: rgba(212, 170, 64, 0.1);
}

.contact-hero-advanced .feature-item i {
    font-size: 1.2rem;
    color: #D4AA40;
}

.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.hero-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
}

/* Contact Section */
.contact-section-advanced {
    padding: 80px 0;
    background: #f8f9fa;
}

/* Form Wrapper */
.contact-form-wrapper-advanced {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-form-wrapper-advanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(135deg, #D4AA40, #BF9835, #A58230);
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-title {
    font-size: 32px;
    color: #333;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.form-title i {
    color: #D4AA40;
}

.form-subtitle {
    color: #666;
    font-size: 16px;
}

/* Form Steps */
.form-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    position: relative;
}

.form-steps::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: #e0e0e0;
    z-index: 1;
}

.step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 2;
}

.step-number {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #e0e0e0;
    color: #999;
    border-radius: 50%;
    line-height: 40px;
    font-weight: bold;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.step.active .step-number {
    background: linear-gradient(135deg, #D4AA40, #BF9835);
    color: white;
    transform: scale(1.2);
}

.step.completed .step-number {
    background: #D4AA40;
    color: white;
}

.step-title {
    display: block;
    font-size: 14px;
    color: #999;
    transition: all 0.3s ease;
}

.step.active .step-title {
    color: #D4AA40;
    font-weight: 600;
}

/* Form Step Content */
.form-step-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.form-step-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Form Groups */
.form-group-advanced {
    margin-bottom: 25px;
    position: relative;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 600;
    font-size: 14px;
}

.form-label i {
    color: #FF6B35;
    margin-left: 5px;
}

.form-control-advanced {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 15px;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.form-control-advanced:focus {
    outline: none;
    border-color: #D4AA40;
    background: white;
    box-shadow: 0 0 0 4px rgba(212, 170, 64, 0.1);
}

.select-advanced {
    cursor: pointer;
}

.textarea-advanced {
    resize: vertical;
    min-height: 120px;
}

.form-helper {
    display: block;
    margin-top: 5px;
    color: #999;
    font-size: 13px;
}

/* File Upload */
.file-upload-area {
    border: 2px dashed #e0e0e0;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.file-upload-area:hover {
    border-color: #D4AA40;
    background: rgba(212, 170, 64, 0.05);
}

.file-upload-area.dragging {
    border-color: #FF6B35;
    background: rgba(255, 107, 53, 0.05);
}

.file-input {
    display: none;
}

.file-label {
    display: block;
    cursor: pointer;
    color: #666;
}

.file-label i {
    display: block;
    font-size: 48px;
    color: #D4AA40;
    margin-bottom: 15px;
}

.file-label span {
    display: block;
    font-size: 16px;
    margin-bottom: 5px;
}

.file-label small {
    color: #999;
    font-size: 13px;
}

.file-list {
    margin-top: 20px;
    text-align: right;
}

.file-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    padding: 8px 15px;
    border-radius: 20px;
    margin: 5px;
    border: 1px solid #e0e0e0;
}

.file-item i {
    color: #D4AA40;
}

.file-remove {
    background: none;
    border: none;
    color: #ff4757;
    cursor: pointer;
    font-size: 16px;
}

/* CAPTCHA */
.captcha-wrapper {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
}

.captcha-box {
    display: flex;
    align-items: center;
    gap: 10px;
}

#captcha-question {
    flex: 1;
    padding: 10px;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    color: #333;
}

.form-control-captcha {
    width: 150px;
    padding: 10px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    text-align: center;
}

.btn-refresh-captcha {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #D4AA40, #BF9835);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-refresh-captcha:hover {
    transform: rotate(180deg);
}

/* Navigation Buttons */
.form-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.btn-next, .btn-prev, .btn-submit {
    padding: 12px 30px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-next, .btn-submit {
    background: linear-gradient(135deg, #D4AA40, #BF9835);
    color: white;
}

.btn-next:hover, .btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 170, 64, 0.3);
}

.btn-prev {
    background: #f8f9fa;
    color: #666;
}

.btn-prev:hover {
    background: #e9ecef;
}

.btn-submit {
    background: linear-gradient(135deg, #FF6B35, #E74C3C);
}

.btn-submit:hover {
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

/* Sidebar Cards */
.contact-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-card {
    background: white;
    border-radius: 15px;
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}

.sidebar-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.card-header {
    padding: 20px;
    background: linear-gradient(135deg, #D4AA40, #BF9835, #A58230);
    color: white;
    display: flex;
    align-items: center;
    gap: 15px;
}

.card-header i {
    font-size: 24px;
}

.card-header h3 {
    margin: 0;
    font-size: 20px;
}

.card-body {
    padding: 20px;
}

/* Quick Contact Items */
.quick-contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
    margin-bottom: 15px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.quick-contact-item:hover {
    background: linear-gradient(135deg, rgba(212, 170, 64, 0.1), rgba(255, 107, 53, 0.1));
    transform: translateX(-10px);
}

.quick-contact-item i {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #D4AA40, #BF9835, #A58230);
    color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.quick-contact-item .label {
    display: block;
    color: #999;
    font-size: 13px;
    margin-bottom: 2px;
}

.quick-contact-item .value {
    display: block;
    color: #333;
    font-weight: 600;
}

/* Location Items */
.location-item {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
}

.location-item:last-child {
    border-bottom: none;
}

.location-item i {
    width: 40px;
    height: 40px;
    background: rgba(212, 170, 64, 0.1);
    color: #D4AA40;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.location-item h4 {
    margin: 0 0 5px;
    font-size: 16px;
    color: #333;
}

.location-item p {
    margin: 0;
    color: #666;
    font-size: 14px;
}

/* Working Hours */
.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}

.hours-item:last-of-type {
    border-bottom: none;
}

.hours-item .day {
    color: #333;
    font-weight: 500;
}

.hours-item .time {
    color: #D4AA40;
    font-weight: 600;
}

.hours-item .time.closed {
    color: #ff4757;
}

.hours-status {
    margin-top: 15px;
    text-align: center;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(212, 170, 64, 0.1);
    color: #D4AA40;
    border-radius: 20px;
    font-weight: 600;
}

.status-badge.open i {
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* Social Links */
.social-links-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
}

.social-link {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    border-radius: 10px;
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-5px);
    color: white;
}

.social-link.facebook:hover { background: linear-gradient(135deg, #D4AA40, #BF9835); }
.social-link.twitter:hover { background: linear-gradient(135deg, #D4AA40, #BF9835); }
.social-link.instagram:hover { background: linear-gradient(135deg, #D4AA40, #BF9835); }
.social-link.linkedin:hover { background: linear-gradient(135deg, #D4AA40, #BF9835); }
.social-link.youtube:hover { background: linear-gradient(135deg, #D4AA40, #BF9835); }

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

.map-container {
    position: relative;
    height: 100%;
}

.map-overlay {
    position: absolute;
    bottom: 30px;
    right: 30px;
    z-index: 2;
}

.map-info {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.map-info h3 {
    margin: 0 0 10px;
    color: #333;
}

.map-info p {
    margin: 0 0 15px;
    color: #666;
}

.btn-directions {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, #D4AA40, #BF9835);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-directions:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 170, 64, 0.3);
}

/* Success Modal */
.success-animation {
    font-size: 80px;
    color: #D4AA40;
    margin-bottom: 20px;
    animation: successPop 0.5s ease;
}

@keyframes successPop {
    0% { transform: scale(0); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

/* Quick Contact Section (Horizontal Layout) */
.quick-contact-section {
    padding: 35px;
    background: linear-gradient(135deg, rgba(212, 170, 64, 0.03) 0%, rgba(255, 107, 53, 0.03) 100%);
    border-radius: 20px;
    border: 1px solid rgba(212, 170, 64, 0.1);
    margin-top: 40px !important;
}

.quick-contact-section .section-header {
    margin-bottom: 25px;
}

.quick-contact-section .section-header h3 {
    color: #333;
    font-size: 1.6rem;
    font-weight: bold;
    margin-bottom: 8px;
}

.quick-contact-section .section-header p {
    font-size: 0.9rem;
    margin: 0;
    color: #666;
}

.quick-contact-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.quick-contact-row {
    display: flex;
    align-items: flex-start;
    background: #fff;
    padding: 12px 20px;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    gap: 0;
    min-height: 50px;
}

.quick-contact-row:hover {
    transform: translateX(-5px);
    box-shadow: 0 5px 20px rgba(212, 170, 64, 0.1);
    border-color: rgba(212, 170, 64, 0.2);
}

.company-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 150px;
    font-weight: bold;
    color: #D4AA40;
    font-size: 0.95rem;
    padding-right: 15px;
    margin-right: 15px;
    border-right: 2px solid rgba(212, 170, 64, 0.15);
    height: 30px;
    line-height: 30px;
}

.company-badge i {
    font-size: 1.1rem;
    color: #ffffff;
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #FF6B35, #E55A2B);
    border-radius: 6px;
    flex-shrink: 0;
}

.contact-items {
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    flex: 1;
    align-items: center;
    min-height: 30px;
    overflow-x: auto;
}

.contact-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #D4AA40;
    text-decoration: none;
    font-size: 0.85rem;
    padding: 0 6px;
    border-radius: 6px;
    transition: all 0.2s ease;
    white-space: nowrap;
    height: 28px;
    line-height: 28px;
    flex-shrink: 0;
}

.contact-item:hover {
    background: rgba(212, 170, 64, 0.08);
    color: #A58230;
}

.contact-item i {
    color: #ffffff;
    font-size: 0.85rem;
    background: linear-gradient(135deg, #D4AA40, #BF9835);
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.contact-item:hover i {
    background: rgba(212, 170, 64, 0.2);
    color: #D4AA40;
}

/* Contact Info Sidebar Improvements */
.contact-info .contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.9);
    gap: 12px;
}

.contact-info .contact-item i {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #D4AA40, #BF9835);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: white;
    font-size: 16px;
}

.contact-info .contact-item span,
.contact-info .contact-item .phone-link {
    flex: 1;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
}

.contact-info .contact-item .phone-link:hover {
    color: #D4AA40;
}

/* Responsive for horizontal layout */
@media (max-width: 768px) {
    .quick-contact-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .company-badge {
        width: 100%;
        padding-bottom: 10px;
        border-bottom: 1px solid rgba(212, 170, 64, 0.1);
    }

    .contact-items {
        width: 100%;
    }

    .contact-item {
        font-size: 0.85rem;
    }
}


/* Responsive */
@media (max-width: 992px) {
    .contact-sidebar {
        position: relative;
        top: 0;
        margin-top: 40px;
    }

    .form-steps {
        margin-bottom: 30px;
    }

    .step-title {
        font-size: 12px;
    }
}

@media (max-width: 768px) {
    .title-main {
        font-size: 32px;
    }

    .title-gradient {
        font-size: 38px;
    }

    .hero-features {
        flex-direction: column;
        align-items: center;
    }

    .contact-form-wrapper-advanced {
        padding: 25px;
    }

    .form-navigation {
        flex-direction: column;
        gap: 10px;
    }

    .btn-prev, .btn-next, .btn-submit {
        width: 100%;
        justify-content: center;
    }

    .social-links-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .map-overlay {
        right: 15px;
        bottom: 15px;
        left: 15px;
    }
}