/* Contact Page Specific Styles */

/* Contact Hero Section */
.contact-hero {
    background: linear-gradient(rgba(6, 24, 22, 0.85), rgba(26, 92, 72, 0.85)), 
                url('images/contact-bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 140px 0;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 30%, rgba(0,0,0,0.3) 100%);
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.contact-hero h1 {
    font-size: 3.8rem;
    margin-bottom: 25px;
    letter-spacing: 1px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.contact-hero p {
    font-size: 1.4rem;
    margin: 0 auto 50px;
    color: #f0f0f0;
    max-width: 700px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
}

.hero-highlights {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 15px 25px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.highlight-item:hover {
    background: rgba(255, 180, 0, 0.2);
    transform: translateY(-3px);
}

.highlight-item i {
    color: #ffb400;
    font-size: 1.2rem;
}

.highlight-item span {
    font-size: 1.1rem;
    font-weight: 500;
}

/* Contact Information Section */
.contact-info-section {
    padding: 100px 0;
    background-color: #fff;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.contact-info-card {
    background: white;
    border-radius: 15px;
    padding: 35px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

.contact-info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: #ffb400;
}

.contact-info-card.featured {
    border-color: #ffb400;
    background: linear-gradient(to bottom, #fffaf0, white);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0c3b2e 0%, #1a5c48 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 2rem;
    transition: all 0.3s ease;
}

.contact-info-card:hover .contact-icon {
    background: linear-gradient(135deg, #ffb400 0%, #ff9800 100%);
    transform: scale(1.1);
}

.contact-info-card h3 {
    font-size: 1.6rem;
    color: #0c3b2e;
    margin-bottom: 20px;
    font-weight: 600;
}

.contact-detail {
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 1.1rem;
    flex-grow: 1;
}

.opening-hours {
    width: 100%;
    margin-bottom: 25px;
}

.hour-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

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

.hour-item .day {
    color: #555;
    font-weight: 500;
}

.hour-item .time {
    color: #0c3b2e;
    font-weight: 600;
}

.contact-action {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    background: linear-gradient(to right, #0c3b2e, #1a5c48);
    color: white;
    margin-top: auto;
}

.contact-action:hover {
    background: linear-gradient(to right, #1a5c48, #0c3b2e);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(12, 59, 46, 0.2);
}

.contact-action.phone {
    background: linear-gradient(to right, #4caf50, #2e7d32);
}

.contact-action.phone:hover {
    background: linear-gradient(to right, #2e7d32, #4caf50);
}

.contact-action.email {
    background: linear-gradient(to right, #2196f3, #0d47a1);
}

.contact-action.email:hover {
    background: linear-gradient(to right, #0d47a1, #2196f3);
}

.contact-action.whatsapp {
    background: linear-gradient(to right, #25d366, #128c7e);
}

.contact-action.whatsapp:hover {
    background: linear-gradient(to right, #128c7e, #25d366);
}

.contact-action.support {
    background: linear-gradient(to right, #ff9800, #f57c00);
}

.contact-action.support:hover {
    background: linear-gradient(to right, #f57c00, #ff9800);
}

/* Contact Form Section */
.contact-form-section {
    padding: 100px 0;
}

.contact-form-container {
    max-width: 800px;
    margin: 50px auto 0;
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    color: #0c3b2e;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-group label i {
    color: #ffb400;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    transition: all 0.3s ease;
    background-color: #f9f9f9;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0c3b2e;
    background-color: white;
    box-shadow: 0 0 0 3px rgba(12, 59, 46, 0.1);
}

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

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    color: #555;
    font-size: 0.95rem;
    line-height: 1.4;
}

.checkbox-label a {
    color: #0c3b2e;
    text-decoration: none;
    font-weight: 600;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkbox-custom {
    width: 20px;
    height: 20px;
    border: 2px solid #ddd;
    border-radius: 4px;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom {
    border-color: #0c3b2e;
    background-color: #0c3b2e;
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom:after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.form-actions {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.btn-submit {
    flex: 2;
    background: linear-gradient(to right, #0c3b2e, #1a5c48);
    color: white;
    border: none;
    padding: 16px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-submit:hover:not(:disabled) {
    background: linear-gradient(to right, #1a5c48, #0c3b2e);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(12, 59, 46, 0.2);
}

.btn-submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.btn-reset {
    flex: 1;
    background: #f8f9fa;
    border: 2px solid #ddd;
    color: #666;
    padding: 16px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-reset:hover {
    background: #e9ecef;
    border-color: #ccc;
}

/* Contact FAQ */
.contact-faq {
    padding: 100px 0;
    background-color: #fff;
}

.faq-container {
    max-width: 800px;
    margin: 50px auto 0;
}

.faq-item {
    background: white;
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #0c3b2e;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.faq-question {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: white;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.2rem;
    color: #0c3b2e;
    font-weight: 600;
    flex: 1;
}

.faq-question i {
    color: #0c3b2e;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 25px 30px;
    max-height: 500px;
    border-top: 1px solid #e0e0e0;
}

.faq-answer p {
    color: #666;
    line-height: 1.6;
    margin: 0;
    font-size: 1rem;
}

/* Map Section */
.map-section {
    padding: 100px 0;
}

.map-container {
    margin-top: 50px;
}

.map-wrapper {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

.map-wrapper iframe {
    display: block;
    border: none;
}

.map-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    padding: 25px;
    max-width: 300px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.map-info h3 {
    font-size: 1.3rem;
    color: #0c3b2e;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.map-info p {
    color: #555;
    margin: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.map-info i {
    color: #ffb400;
    width: 20px;
}

.btn-directions {
    display: inline-block;
    background: linear-gradient(to right, #ffb400, #ff9800);
    color: #0c3b2e;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    margin-top: 15px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
}

.btn-directions:hover {
    background: linear-gradient(to right, #ff9800, #ffb400);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 180, 0, 0.3);
}

.transportation-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.transport-card {
    background: white;
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.transport-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: #ffb400;
}

.transport-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0c3b2e 0%, #1a5c48 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 1.5rem;
}

.transport-card h4 {
    font-size: 1.2rem;
    color: #0c3b2e;
    margin-bottom: 15px;
}

.transport-card p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
}

/* Social Media Section */
.social-section {
    padding: 100px 0;
    background-color: #fff;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.social-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.social-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.social-card.facebook {
    border-color: #1877f2;
}

.social-card.facebook:hover {
    background: linear-gradient(to bottom, #f0f8ff, white);
}

.social-card.instagram {
    border-color: #e4405f;
}

.social-card.instagram:hover {
    background: linear-gradient(to bottom, #fff0f5, white);
}

.social-card.youtube {
    border-color: #ff0000;
}

.social-card.youtube:hover {
    background: linear-gradient(to bottom, #fff0f0, white);
}

.social-card.whatsapp {
    border-color: #25d366;
}

.social-card.whatsapp:hover {
    background: linear-gradient(to bottom, #f0fff4, white);
}

.social-card.twitter {
    border-color: #1da1f2;
}

.social-card.twitter:hover {
    background: linear-gradient(to bottom, #f0faff, white);
}

.social-card.tripadvisor {
    border-color: #00af87;
}

.social-card.tripadvisor:hover {
    background: linear-gradient(to bottom, #f0fffb, white);
}

.social-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 1.8rem;
}

.social-card.facebook .social-icon {
    background: linear-gradient(135deg, #1877f2, #0d5cbf);
}

.social-card.instagram .social-icon {
    background: linear-gradient(135deg, #e4405f, #c13584);
}

.social-card.youtube .social-icon {
    background: linear-gradient(135deg, #ff0000, #cc0000);
}

.social-card.whatsapp .social-icon {
    background: linear-gradient(135deg, #25d366, #128c7e);
}

.social-card.twitter .social-icon {
    background: linear-gradient(135deg, #1da1f2, #0d8bd9);
}

.social-card.tripadvisor .social-icon {
    background: linear-gradient(135deg, #00af87, #008c6d);
}

.social-card h3 {
    font-size: 1.4rem;
    color: #0c3b2e;
    margin-bottom: 15px;
    font-weight: 600;
}

.social-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 0.95rem;
    flex-grow: 1;
}

.social-handle {
    display: inline-block;
    background: #f9f9f9;
    padding: 8px 15px;
    border-radius: 20px;
    color: #555;
    font-weight: 500;
    font-size: 0.9rem;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.social-card:hover .social-handle {
    background: #0c3b2e;
    color: white;
    border-color: #0c3b2e;
}

.newsletter-signup {
    background: linear-gradient(135deg, #f9f9f9 0%, #f0f0f0 100%);
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    margin-top: 50px;
    border: 2px solid #ffb400;
}

.newsletter-signup h3 {
    font-size: 2rem;
    color: #0c3b2e;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.newsletter-signup h3 i {
    color: #ffb400;
}

.newsletter-signup p {
    color: #666;
    max-width: 600px;
    margin: 0 auto 30px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-input-group {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.newsletter-input-group input {
    flex: 1;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 50px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.newsletter-input-group input:focus {
    outline: none;
    border-color: #0c3b2e;
    box-shadow: 0 0 0 3px rgba(12, 59, 46, 0.1);
}

.btn-newsletter {
    background: linear-gradient(to right, #0c3b2e, #1a5c48);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}

.btn-newsletter:hover:not(:disabled) {
    background: linear-gradient(to right, #1a5c48, #0c3b2e);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(12, 59, 46, 0.2);
}

.btn-newsletter:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.newsletter-agreement {
    text-align: left;
    max-width: 400px;
    margin: 0 auto;
}

/* Success Modal */
.contact-success-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 3000;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
    padding: 20px;
}

.success-content {
    background: white;
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    max-width: 600px;
    width: 100%;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    animation: scaleIn 0.3s ease;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

@keyframes scaleIn {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.success-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: #666;
    font-size: 28px;
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s ease;
    z-index: 2;
}

.success-close:hover {
    color: #ff6b6b;
}

.success-icon {
    font-size: 64px;
    color: #4caf50;
    margin-bottom: 20px;
}

.success-content h3 {
    font-size: 2rem;
    color: #0c3b2e;
    margin-bottom: 15px;
}

.success-content > p {
    color: #666;
    margin-bottom: 25px;
    font-size: 1.1rem;
    line-height: 1.5;
}

.success-details {
    background: #f9f9f9;
    border-radius: 10px;
    padding: 20px;
    text-align: left;
    margin-bottom: 25px;
}

.success-details p {
    margin: 10px 0;
    color: #555;
}

.success-details strong {
    color: #0c3b2e;
    min-width: 160px;
    display: inline-block;
}

.success-next-steps {
    background: #fffaf0;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 25px;
    text-align: left;
    border: 1px solid #ffb400;
}

.success-next-steps h4 {
    font-size: 1.2rem;
    color: #0c3b2e;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.success-next-steps h4 i {
    color: #ffb400;
}

.success-next-steps ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.success-next-steps li {
    margin-bottom: 10px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 10px;
}

.success-next-steps li i {
    color: #4caf50;
}

.success-actions {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.btn-success {
    flex: 2;
    background: linear-gradient(to right, #0c3b2e, #1a5c48);
    color: white;
    border: none;
    padding: 15px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-success:hover {
    background: linear-gradient(to right, #1a5c48, #0c3b2e);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(12, 59, 46, 0.2);
}

.btn-home {
    flex: 1;
    background: #f8f9fa;
    border: 2px solid #ddd;
    color: #666;
    padding: 15px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
}

.btn-home:hover {
    background: #e9ecef;
    border-color: #ccc;
    color: #333;
}

/* Form validation states */
input.valid,
select.valid,
textarea.valid {
    border-color: #4caf50 !important;
    background-color: #f9fff9 !important;
}

input.invalid,
select.invalid,
textarea.invalid {
    border-color: #ff6b6b !important;
    background-color: #fff9f9 !important;
    animation: shake 0.3s ease;
}

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

/* Toast Notifications */
.toast {
    position: fixed;
    top: 100px;
    right: 30px;
    background: white;
    color: #333;
    padding: 15px 25px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 5000;
    transform: translateX(100%);
    opacity: 0;
    transition: all 0.3s ease;
    border-left: 4px solid #0c3b2e;
    max-width: 350px;
}

.toast.show {
    transform: translateX(0);
    opacity: 1;
}

.toast-success {
    border-left-color: #4caf50;
}

.toast-error {
    border-left-color: #ff6b6b;
}

.toast i {
    font-size: 1.2rem;
}

.toast-success i {
    color: #4caf50;
}

.toast-error i {
    color: #ff6b6b;
}

.toast span {
    font-size: 0.95rem;
    line-height: 1.4;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .social-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contact-hero h1 {
        font-size: 2.5rem;
    }
    
    .contact-hero p {
        font-size: 1.1rem;
    }
    
    .hero-highlights {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .contact-info-grid,
    .social-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form-container {
        padding: 30px;
    }
    
    .map-overlay {
        position: relative;
        top: 0;
        left: 0;
        max-width: 100%;
        margin-top: 20px;
    }
    
    .newsletter-input-group {
        flex-direction: column;
    }
    
    .btn-newsletter {
        width: 100%;
        justify-content: center;
    }
    
    .success-actions {
        flex-direction: column;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .success-details strong {
        min-width: auto;
        display: block;
        margin-bottom: 5px;
    }
}

@media (max-width: 576px) {
    .contact-hero {
        padding: 100px 0;
    }
    
    .contact-hero h1 {
        font-size: 2rem;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .contact-info-card {
        padding: 25px 20px;
    }
    
    .faq-question {
        padding: 20px;
    }
    
    .faq-question h3 {
        font-size: 1.1rem;
    }
    
    .newsletter-signup {
        padding: 30px 20px;
    }
    
    .success-content {
        padding: 30px 20px;
    }
    
    .success-content h3 {
        font-size: 1.5rem;
    }
}