@import url('https://fonts.googleapis.com/css2?family=Expletus+Sans:ital,wght@0,400;0,700;1,400&display=swap');

/* Target the hero container - PRIMARY TARGET */
.zpcontent-container.hero-container {
  min-height: 800px !important;
  height: 800px !important;
}

/* Target any hero element with applied height */
.zphero.zpapply-height {
  min-height: 800px !important;
  height: 800px !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .zpcontent-container.hero-container,
  .zphero.zpapply-height {
    min-height: 500px !important;
    height: 500px !important;
  }
}

@media (max-width: 460px) {
  .zpcontent-container.hero-container,
  .zphero.zpapply-height {
    min-height: 400px !important;
    height: 400px !important;
  }
}

/* === CONTACT MODAL STYLES === */
.avira-contact-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
    overflow: auto;
}

.avira-contact-modal-content {
    background-color: #fefefe;
    margin: 5% auto;
    padding: 40px;
    border-radius: 15px;
    width: 90%;
    max-width: 600px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    position: relative;
    font-family: 'Expletus Sans', serif;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.avira-contact-close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    top: 15px;
    right: 20px;
    transition: color 0.3s;
}

.avira-contact-close:hover {
    color: #333;
}

.avira-contact-modal h2 {
    color: #2c3e50;
    margin-bottom: 20px;
    text-align: center;
    font-size: 2rem;
}

.avira-contact-modal p {
    color: #7f8c8d;
    text-align: center;
    margin-bottom: 30px;
    line-height: 1.6;
    font-size: 1.1rem;
}

.avira-contact-form {
    margin-top: 20px;
}

.avira-form-group {
    margin-bottom: 25px;
}

.avira-form-group label {
    display: block;
    color: #2c3e50;
    margin-bottom: 8px;
    font-weight: 600;
    text-align: left;
}

.avira-form-group input,
.avira-form-group textarea,
.avira-form-group select {
    width: 100%;
    padding: 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Expletus Sans', serif;
    transition: border-color 0.3s;
}

.avira-form-group input:focus,
.avira-form-group textarea:focus,
.avira-form-group select:focus {
    outline: none;
    border-color: #667eea;
}

.avira-form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.avira-send-email-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    cursor: pointer;
    font-family: 'Expletus Sans', serif;
    width: 100%;
    transition: all 0.3s ease;
    font-weight: 600;
}

.avira-send-email-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

/* Success Message Styles */
.avira-success-message {
    display: none;
    text-align: center;
    padding: 40px 20px;
}

.avira-success-message h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.avira-success-message p {
    color: #7f8c8d;
    margin-bottom: 30px;
    line-height: 1.6;
    font-size: 1.1rem;
}

.avira-form-fields {
    display: block;
}

.avira.logo-image {
    margin-left: -50px
}    

@media (max-width: 768px) {
    .avira-contact-modal-content {
        padding: 30px 20px;
        margin: 10% auto;
    }
}