/* Contact Page Specific Styles */
.contact-hero {
    height: 50vh;
    min-height: 400px;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.8)), url('IMG-20250513-WA0012.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--primary-color) 0%, transparent 70%);
    opacity: 0.3;
}

.contact-hero .hero-content h1 {
    font-size: 48px;
}

/* Contact Info Section */
.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.info-card {
    background-color: var(--dark-color);
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(255, 0, 51, 0.2);
    border-color: var(--primary-color);
}

.info-card .icon {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.info-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.info-card h3::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    transform: scaleX(0.5);
    transition: var(--transition);
}

.info-card:hover h3::after {
    transform: scaleX(1);
}

.info-card p {
    color: #ccc;
    margin-bottom: 10px;
}

/* Contact Form Section */
.contact-form {
    background-color: var(--dark-color-light);
}

.contact-form .section-header p {
    max-width: 700px;
    margin: 20px auto 0;
    color: #ccc;
}

form {
    max-width: 800px;
    margin: 50px auto 0;
    padding: 40px;
    background-color: var(--dark-color);
    border-radius: 8px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

form::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-color), var(--primary-color-light));
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #eee;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    background-color: var(--dark-color-lighter);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    color: #fff;
    font-family: var(--font-primary);
    font-size: 16px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(255, 0, 51, 0.2);
}

.form-submit {
    text-align: center;
}

.form-submit .btn {
    padding: 15px 40px;
    font-size: 18px;
}

/* Form status messages */
.form-status {
    margin-top: 30px;
}

.status-message {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    border-radius: 4px;
    margin-bottom: 20px;
    display: none;
}

.status-message.success {
    background-color: rgba(0, 128, 0, 0.2);
    border: 1px solid rgba(0, 128, 0, 0.3);
    color: #4caf50;
}

.status-message.error {
    background-color: rgba(255, 0, 0, 0.2);
    border: 1px solid rgba(255, 0, 0, 0.3);
    color: #f44336;
}

.status-message i {
    font-size: 24px;
    margin-right: 15px;
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--dark-color);
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: 0 10px 20px rgba(255, 0, 51, 0.1);
    border-color: rgba(255, 0, 51, 0.2);
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

.toggle-icon {
    color: var(--primary-color);
    font-size: 18px;
    transition: var(--transition);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding-bottom: 20px;
    color: #ccc;
}

.faq-item.active .faq-question {
    background-color: rgba(255, 0, 51, 0.1);
}

.faq-item.active .toggle-icon {
    transform: rotate(45deg);
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .contact-hero .hero-content h1 {
        font-size: 36px;
    }
    
    form {
        padding: 30px 20px;
    }
    
    .info-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .contact-hero .hero-content h1 {
        font-size: 30px;
    }
    
    .form-group label {
        font-size: 14px;
    }
    
    .form-group input, 
    .form-group textarea {
        padding: 10px;
        font-size: 14px;
    }
    
    .form-submit .btn {
        padding: 12px 30px;
        font-size: 16px;
    }
    
    .faq-question h3 {
        font-size: 16px;
    }
}

/* Pricing Section */
.pricing {
    background-color: var(--dark-color);
    position: relative;
}

.pricing .section-header p {
    max-width: 700px;
    margin: 20px auto 0;
    color: var(--accent-color);
}

.pricing-card {
    max-width: 1000px;
    margin: 50px auto 0;
    background-color: var(--dark-color-light);
    border-radius: 10px;
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-header {
    text-align: center;
    padding: 30px;
    background: linear-gradient(120deg, var(--dark-color-lighter), var(--primary-color-dark));
    color: var(--light-color);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-header h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.pricing-header p {
    color: var(--accent-color);
    font-size: 16px;
}

.pricing-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 0;
}

.grade-item {
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.grade-item:last-child {
    border-right: none;
}

.grade-item.featured {
    background-color: rgba(255, 0, 51, 0.05);
    transform: scale(1.05);
    z-index: 2;
    box-shadow: 0 15px 30px rgba(255, 0, 51, 0.2);
    border: 1px solid rgba(255, 0, 51, 0.2);
}

.grade-header {
    margin-bottom: 20px;
    position: relative;
}

.popular-tag {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-color);
    color: var(--light-color);
    padding: 5px 15px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.grade-header h4 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--light-color);
}

.price {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
}

.price span {
    font-size: 16px;
    font-weight: 400;
    color: var(--accent-color);
}

.grade-features {
    margin: 20px 0 30px;
    padding: 0;
    list-style: none;
}

.grade-features li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--accent-color);
}

.grade-features li:last-child {
    border-bottom: none;
}

.grade-features li.available {
    color: var(--light-color);
}

.grade-features li.unavailable {
    color: var(--gray-color);
}

.grade-features li i {
    margin-right: 10px;
}

.grade-features li i.fa-check {
    color: var(--primary-color);
}

.grade-features li i.fa-times {
    color: var(--gray-color);
}

.grade-item .btn {
    width: 100%;
}

.grade-item.featured .btn {
    background-color: var(--primary-color);
    color: var(--light-color);
    border-color: var(--primary-color);
}

.grade-item .btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.grade-item .btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--light-color);
}

/* Form Updates */
.form-group select {
    width: 100%;
    padding: 12px 15px;
    background-color: var(--dark-color-lighter);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    color: #fff;
    font-family: var(--font-primary);
    font-size: 16px;
    transition: var(--transition);
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23FFFFFF%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E');
    background-repeat: no-repeat;
    background-position: right 15px top 50%;
    background-size: 12px auto;
    padding-right: 30px;
}

.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(255, 0, 51, 0.2);
}

.form-group select option {
    background-color: var(--dark-color-lighter);
    color: var(--light-color);
}

/* Responsive Styles for Pricing */
@media (max-width: 992px) {
    .pricing-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .grade-item {
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .grade-item:nth-child(even) {
        border-right: none;
    }
    
    .grade-item:nth-last-child(-n+2) {
        border-bottom: none;
    }
    
    .grade-item.featured {
        grid-column: span 2;
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .pricing-content {
        grid-template-columns: 1fr;
    }
    
    .grade-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .grade-item:last-child {
        border-bottom: none;
    }
    
    .grade-item.featured {
        grid-column: span 1;
    }
} 

/* Message styles for EmailJS feedback */
.form-message {
    margin-bottom: 20px;
    padding: 15px 20px;
    border-radius: 8px;
    animation: slideInDown 0.5s ease-out;
}

.form-message.success {
    background-color: rgba(34, 197, 94, 0.1);
    border: 1px solid #22c55e;
    color: #16a34a;
}

.form-message.error {
    background-color: rgba(239, 68, 68, 0.1);
    border: 1px solid #ef4444;
    color: #dc2626;
}

.message-content {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.message-content i {
    font-size: 1.2em;
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Loading state for submit button */
button[type="submit"]:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    background-color: #666;
}