@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

.wa-cp-wrapper {
    background-color: #000000;
    color: #ffffff;
    padding: 100px 20px;
    font-family: 'Inter', sans-serif;
    text-align: center;
}

.wa-cp-header {
    margin-bottom: 80px;
}

.wa-cp-main-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: -1.5px;
}

.wa-cp-main-subtitle {
    font-size: 16px;
    color: #666666;
    font-weight: 400;
}

/* Layout Grid */
.wa-cp-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    text-align: left;
}

.wa-cp-info-column {
    flex: 0 0 400px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.wa-cp-form-column {
    flex: 1;
}

/* Info Cards */
.wa-cp-info-card {
    background: #0c0c0c;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.wa-cp-info-card:hover {
    border-color: rgba(168, 85, 247, 0.3);
    transform: translateY(-5px);
}

.wa-cp-card-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
    display: flex;
    align-items: center;
}

.wa-cp-icon-text {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.wa-cp-purple-icon {
    color: #a855f7; /* Volandex Purple */
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.wa-cp-icon-text p {
    margin: 0;
    font-size: 15px;
    color: #888888;
    line-height: 1.6;
}

/* Hours Card Special */
.wa-cp-hour-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 14px;
}

.wa-cp-hour-row:last-child {
    margin-bottom: 0;
}

.wa-cp-hour-row .day {
    color: #666666;
}

.wa-cp-hour-row .hour {
    font-weight: 700;
    color: #22c55e; /* Green */
}

.wa-cp-hour-row .hour.orange-text {
    color: #f97316; /* Orange */
}

/* Social Links */
.wa-cp-social-links {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.wa-cp-social-item {
    width: 40px;
    height: 40px;
    background: #111111;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666666;
    text-decoration: none;
    transition: all 0.3s ease;
}

.wa-cp-social-item:hover {
    background: #a855f7;
    color: #ffffff;
    border-color: #a855f7;
    transform: scale(1.1);
}

/* Form Styling */
.wa-cp-form-column {
    background: #0c0c0c;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 50px;
}

.wa-cp-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.wa-cp-input-group {
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
}

.wa-cp-input-group label {
    font-size: 13px;
    color: #444444;
    margin-bottom: 10px;
    font-weight: 500;
}

.wa-cp-input-group input, 
.wa-cp-input-group textarea {
    background: #080808;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 16px 20px;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    transition: all 0.3s ease;
}

.wa-cp-input-group input:focus, 
.wa-cp-input-group textarea:focus {
    outline: none;
    border-color: #a855f7;
    background: #111111;
}

.wa-cp-input-group.full-width {
    grid-column: span 2;
}

.wa-cp-submit-btn {
    width: 100%;
    padding: 18px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(90deg, #a855f7 0%, #3b82f6 100%);
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.wa-cp-submit-btn:hover {
    filter: brightness(1.2);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(168, 85, 247, 0.3);
}

.wa-cp-form-result {
    padding: 15px 20px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    border: 1px solid transparent;
}

.wa-cp-form-result.success {
    background: rgba(34, 197, 94, 0.1);
    border-color: rgba(34, 197, 94, 0.2);
    color: #4ade80;
    box-shadow: 0 0 15px rgba(34, 197, 94, 0.2);
}

.wa-cp-form-result.error {
    background: rgba(239, 68, 68, 0.1);
    border-color: rgba(239, 68, 68, 0.2);
    color: #f87171;
    box-shadow: 0 0 15px rgba(239, 68, 68, 0.2);
}

/* Google Maps Section */
.wa-cp-map-section {
    max-width: 1200px;
    margin: 60px auto 0;
    border-radius: 30px;
    overflow: hidden;
    height: 450px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.wa-cp-map-container {
    width: 100%;
    height: 100%;
}

.wa-cp-map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: invert(90%) hue-rotate(180deg) brightness(1.1) contrast(1.1); /* Dark Map Effect */
}

/* Responsive */
@media (max-width: 1024px) {
    .wa-cp-container {
        flex-direction: column;
    }
    .wa-cp-info-column {
        flex: none;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .wa-cp-wrapper {
        padding: 60px 20px;
    }
    .wa-cp-main-title {
        font-size: 32px;
    }
    .wa-cp-form-grid {
        grid-template-columns: 1fr;
    }
    .wa-cp-input-group.full-width {
        grid-column: span 1;
    }
    .wa-cp-form-column {
        padding: 30px 20px;
    }
}
