/* Contact Section - AMAZING & URGENT */
.contact {
    padding: 6rem 0;
    background: linear-gradient(135deg, #000000 0%, #2d1b3d 50%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
    color: white;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(212, 175, 55, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

/* Attention-Grabbing Header */
.contact-hero {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.urgency-banner {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, var(--gold-accent), #ffd700);
    color: var(--primary-black);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    animation: urgencyPulse 2s ease-in-out infinite;
    box-shadow: 
        0 8px 32px rgba(212, 175, 55, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.1);
}

@keyframes urgencyPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 8px 32px rgba(212, 175, 55, 0.4); }
    50% { transform: scale(1.05); box-shadow: 0 12px 48px rgba(212, 175, 55, 0.6); }
}

.contact-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 2rem;
    text-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.title-main {
    display: block;
    color: white;
    font-size: 0.7em;
}

.title-luxury {
    display: block;
    background: linear-gradient(135deg, var(--gold-accent), #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.2em;
    animation: titleShine 3s ease-in-out infinite;
}

.title-emphasis {
    display: block;
    color: white;
    font-size: 0.8em;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-top: 0.5rem;
}

@keyframes titleShine {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.3); }
}

.response-guarantee {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.guarantee-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    padding: 1.5rem 2rem;
    animation: guaranteeBounce 4s ease-in-out infinite;
}

@keyframes guaranteeBounce {
    0%, 100% { transform: translateY(0); }
    25% { transform: translateY(-5px); }
    75% { transform: translateY(-2px); }
}

.guarantee-badge i {
    font-size: 2rem;
    color: var(--gold-accent);
    animation: clockTick 1s ease-in-out infinite;
}

@keyframes clockTick {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(15deg); }
}

.guarantee-text {
    display: flex;
    flex-direction: column;
    color: white;
}

.guarantee-text strong {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--gold-accent);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.guarantee-text span {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Enhanced Contact Content */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    position: relative;
    z-index: 2;
}

.exclusive-message {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 3rem;
}

.message-icon {
    background: linear-gradient(135deg, var(--gold-accent), #ffd700);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    animation: starRotate 4s linear infinite;
}

@keyframes starRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.message-icon i {
    color: var(--primary-black);
    font-size: 1.5rem;
}

.exclusive-process {
    color: white;
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

/* Interactive Process Steps */
.process-steps {
    margin-bottom: 3rem;
    display: grid;
    gap: 1.5rem;
}

.step {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.08));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.step:hover {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.1));
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-2px);
}

.step-number {
    position: relative;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--gold-accent), #ffd700);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--primary-black);
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.3);
}

.step-content {
    flex: 1;
}

.step-content h4 {
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 0.4rem 0;
    font-family: 'Playfair Display', serif;
}

.step-content p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1.4;
    font-size: 0.9rem;
}

/* Urgency Indicators */
.urgency-indicators {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 3rem;
}

.indicator {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 1rem;
    animation: indicatorBlink 3s ease-in-out infinite;
}

@keyframes indicatorBlink {
    0%, 100% { 
        background: rgba(255, 255, 255, 0.05);
        border-color: rgba(255, 255, 255, 0.1);
    }
    50% { 
        background: rgba(255, 255, 255, 0.1);
        border-color: rgba(255, 255, 255, 0.2);
    }
}

.indicator i {
    color: #34c759;
    font-size: 1.2rem;
    animation: indicatorShake 2s ease-in-out infinite;
}

@keyframes indicatorShake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-2px); }
    75% { transform: translateX(2px); }
}

.indicator span {
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Availability Counters */
.availability-counter {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.08));
    backdrop-filter: blur(20px);
    border: 2px solid rgba(52, 199, 89, 0.4);
    border-radius: 20px;
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.availability-counter:hover {
    transform: translateY(-3px);
    border-color: rgba(52, 199, 89, 0.6);
    box-shadow: 0 10px 30px rgba(52, 199, 89, 0.3);
}

.counter-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--gold-accent), #ffd700);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.counter-icon i {
    color: var(--primary-black);
    font-size: 1.3rem;
}

.counter-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.counter-number {
    font-size: 2rem;
    font-weight: 800;
    color: #34c759;
    font-family: 'Inter', sans-serif;
    line-height: 1;
}

.counter-label {
    font-size: 0.9rem;
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.counter-service {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.availability-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0 0 18px 18px;
    overflow: hidden;
}

.availability-fill {
    height: 100%;
    background: linear-gradient(90deg, #34c759, #30d158);
    transition: width 0.8s ease-out;
    animation: barGlow 3s ease-in-out infinite;
}

@keyframes barGlow {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.2); }
}

/* Enhanced Contact Details */
.contact-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-2px);
}

.contact-item i {
    color: var(--gold-accent);
    font-size: 1.5rem;
}

.contact-item h4 {
    color: white;
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 0.25rem 0;
}

.contact-item p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-size: 0.9rem;
}

/* AMAZING Contact Form */
.contact-form {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.1));
    backdrop-filter: blur(30px);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 30px;
    padding: 3rem;
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.3),
        0 10px 30px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    animation: formShine 4s linear infinite;
    pointer-events: none;
}

@keyframes formShine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.form-header {
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 2;
}

.form-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--gold-accent), #ffd700);
    color: var(--primary-black);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 800;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    animation: badgeFloat 3s ease-in-out infinite;
}

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

.form-header h3 {
    color: white;
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.form-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin: 0 0 1rem 0;
    line-height: 1.5;
}

.form-timer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--gold-accent);
    font-weight: 600;
    font-size: 0.9rem;
}

.form-timer i {
    animation: timerTick 1s ease-in-out infinite;
}

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

/* Enhanced Form Elements */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1.2rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    color: white;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold-accent);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 
        0 0 0 3px rgba(212, 175, 55, 0.2),
        0 8px 25px rgba(212, 175, 55, 0.3);
    transform: translateY(-2px);
}

.form-group input::placeholder,
.form-group select::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

/* AMAZING Submit Button */
.submit-btn {
    width: 100%;
    padding: 1.5rem 2rem !important;
    background: linear-gradient(135deg, var(--gold-accent), #ffd700) !important;
    color: var(--primary-black) !important;
    border: none !important;
    border-radius: 25px !important;
    font-size: 1.2rem !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
    box-shadow: 
        0 15px 40px rgba(212, 175, 55, 0.4),
        0 8px 20px rgba(212, 175, 55, 0.3) !important;
    animation: buttonPulse 3s ease-in-out infinite;
}

@keyframes buttonPulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 
            0 15px 40px rgba(212, 175, 55, 0.4),
            0 8px 20px rgba(212, 175, 55, 0.3);
    }
    50% { 
        transform: scale(1.02);
        box-shadow: 
            0 20px 50px rgba(212, 175, 55, 0.5),
            0 12px 30px rgba(212, 175, 55, 0.4);
    }
}

.submit-btn:hover {
    transform: translateY(-5px) scale(1.02) !important;
    background: linear-gradient(135deg, #ffd700, var(--gold-accent)) !important;
    box-shadow: 
        0 25px 60px rgba(212, 175, 55, 0.6),
        0 15px 35px rgba(212, 175, 55, 0.5) !important;
}

.btn-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: buttonGlow 2s ease-in-out infinite;
}

@keyframes buttonGlow {
    0% { left: -100%; }
    100% { left: 100%; }
}

.submit-btn i {
    margin-right: 0.8rem;
    font-size: 1.3rem;
}

.response-guarantee-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 1.5rem;
    color: var(--gold-accent);
    font-weight: 600;
    font-size: 1rem;
    animation: guaranteeGlow 2s ease-in-out infinite;
}

@keyframes guaranteeGlow {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.response-guarantee-footer i {
    color: #ffd700;
    animation: lightningBolt 1.5s ease-in-out infinite;
}

@keyframes lightningBolt {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.2) rotate(10deg); }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .contact {
        padding: 4rem 0;
    }
    
    .contact-title {
        font-size: 2.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-details {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 2rem;
    }
    
    .urgency-indicators {
        gap: 0.8rem;
    }
}
