/* ========================================
   CONTACT PAGE STYLES
   Matching Services Page Design Pattern
   ======================================== */

/* CSS Variables */
:root {
    --primary: #6C3DB8;
    --primary-dark: #5a2f9c;
    --primary-light: #7d4fc9;
    --white: #FFFFFF;
    --gray: #6E6E6E;
    --dark: #3A3A3A;
    --light-gray: #f8f9fa;
    --border: #e9ecef;
    --shadow: 0 5px 15px rgba(108, 61, 184, 0.1);
    --shadow-hover: 0 10px 30px rgba(108, 61, 184, 0.2);
}

/* Contact Hero Section */
.contact-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    padding: 160px 0 80px;
    text-align: center;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.contact-hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.contact-hero .subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

/* Contact Form - White Card */
.contact-form {
    background: var(--white);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    border-top: 4px solid var(--primary);
    transition: all 0.3s ease;
}

.contact-form:hover {
    box-shadow: var(--shadow-hover);
}

.contact-form h2 {
    color: var(--dark);
    margin-bottom: 0.5rem;
    font-size: 2rem;
    font-family: 'Montserrat', sans-serif;
}

.contact-form > p {
    color: var(--gray);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.project-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark);
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid var(--border);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    background: var(--white);
    color: var(--dark);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(108, 61, 184, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.5;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--primary-dark);
    opacity: 0.7;
}

/* Contact Info - Dark Card */
.contact-info {
    background: var(--gray);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: var(--primary-dark);
    position: relative;
    overflow: hidden;
}

.contact-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--dark), var(--dark));
}

.contact-info h2 {
    color: var(--dark);
    margin-bottom: 0.5rem;
    font-size: 2rem;
    font-family: 'Montserrat', sans-serif;
}

.contact-info > p {
    color: #010507;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0;
    background: transparent;
    border-radius: 0;
    transition: all 0.3s ease;
}

.contact-method:hover .method-icon {
    color: var(--dark);
    transform: scale(1.15);
}

.method-icon {
    width: 40px;
    height: 40px;
    background: transparent;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    font-size: 1.3rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.method-info {
    flex: 1;
}

.method-info h3 {
    display: none;
}

.method-info p {
    color: var(--white);
    font-weight: 400;
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.method-info span {
    color: #000000;
    font-size: 0.85rem;
    display: block;
}

/* WhatsApp Button in Contact Method */
.method-info .whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #25D366;
    color: var(--white);
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 0.8rem;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
}

.method-info .whatsapp-btn:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

/* Newsletter in Contact Info */
.contact-info .newsletter {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.contact-info .newsletter h5 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
}

.contact-info .newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.contact-info .newsletter-form input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: none;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.contact-info .newsletter-form input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.15);
}

.contact-info .newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.contact-info .newsletter-form button {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 0.75rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 50px;
}

.contact-info .newsletter-form button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.contact-info .newsletter-form button i {
    font-size: 1.2rem;
}

/* FAQ Section */
.faq-section {
    background: var(--light-gray);
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--gray);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow-hover);
}

.faq-question {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
    background: var(--white);
}

.faq-question:hover {
    background: var(--light-gray);
}

.faq-question h3 {
    color: var(--dark);
    font-size: 1.1rem;
    margin: 0;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    flex: 1;
    padding-right: 1rem;
}

.faq-question i {
    color: var(--primary);
    transition: transform 0.3s ease;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 2rem 1.5rem;
    max-height: 300px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer p {
    color: var(--gray);
    line-height: 1.6;
    margin: 0;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 1000;
}

.whatsapp-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: var(--white);
    border-radius: 50%;
    font-size: 1.5rem;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float a:hover {
    background: #128C7E;
    transform: scale(1.1);
}

@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--border) 0%, var(--border) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loading-screen.hidden {
    opacity: 0;
    pointer-events: none;
}

.loading-content {
    text-align: center;
    color: var(--white);
}

.loading-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-size: 2rem;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 2rem;
    animation: fadeInUp 0.6s ease;
}

.loading-logo i {
    animation: bounce 2s infinite;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top: 4px solid var(--white);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    font-family: 'Poppins', sans-serif;
    animation: fadeIn 1s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 0.9; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Buttons */
.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    text-align: center;
    justify-content: center;
}

.btn--primary {
    background: var(--primary);
    color: var(--white);
    font-weight: 600;
}

.btn--primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn--primary:active {
    transform: translateY(0);
}

.btn--secondary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn--secondary:hover {
    background: var(--primary);
    color: var(--white);
}

/* Container and Base Styles */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 80px 0;
}

* {
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
    width: 100%;
    font-family: 'Poppins', sans-serif;
}

/* ========================================
   FOOTER STYLES
   ======================================== */

.footer {
    background: linear-gradient(135deg, var(--dark) 0%, #2c3e50 100%);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    font-family: 'Montserrat', sans-serif;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary);
    font-family: 'Montserrat', sans-serif;
}

.footer-logo i {
    font-size: 1.3rem;
}

.footer-tagline {
    color: #bdc3c7;
    margin-bottom: 1.5rem;
    font-style: italic;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Poppins', sans-serif;
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-links a i {
    font-size: 0.7rem;
}

/* Footer Contact Info */
.footer-contact-info {
    margin-bottom: 1.5rem;
}

.footer-contact-info p {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: #bdc3c7;
    font-family: 'Poppins', sans-serif;
    transition: color 0.3s ease;
}

.footer-contact-info p:hover {
    color: var(--white);
}

.footer-contact-info p i {
    color: var(--primary);
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

/* Footer Newsletter */
.footer .newsletter {
    margin-top: 1rem;
}

.footer .newsletter h5 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
}

.footer .newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.footer .newsletter-form input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: none;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.footer .newsletter-form input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.15);
}

.footer .newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.footer .newsletter-form button {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 0.75rem;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 45px;
}

.footer .newsletter-form button:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
}

.footer .newsletter-form button i {
    font-size: 1rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    opacity: 0.7;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
}

.footer-bottom-links a:hover {
    color: var(--white);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

/* Large Desktop (1200px+) */
@media (min-width: 1200px) {
    .contact-grid {
        gap: 5rem;
    }
}

/* Tablets (768px - 1024px) */
@media (max-width: 1024px) {
    .contact-hero {
        padding: 140px 0 70px;
    }
    
    .contact-hero h1 {
        font-size: 3rem;
    }
    
    .contact-grid {
        gap: 3rem;
    }
    
    .contact-form,
    .contact-info {
        padding: 2.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

/* Tablet Portrait (768px) */
@media (max-width: 768px) {
    .contact-hero {
        padding: 120px 0 60px;
        margin-top: 70px;
    }
    
    .contact-hero h1 {
        font-size: 2.5rem;
    }
    
    .contact-hero .subtitle {
        font-size: 1.1rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-form,
    .contact-info {
        padding: 2rem;
    }
    
    .faq-question {
        padding: 1.25rem 1.5rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

/* Mobile (576px) */
@media (max-width: 576px) {
    .contact-hero {
        padding: 100px 0 50px;
        margin-top: 60px;
    }
    
    .contact-hero h1 {
        font-size: 2rem;
    }
    
    .contact-hero .subtitle {
        font-size: 1rem;
    }
    
    .contact-form,
    .contact-info {
        padding: 1.5rem;
    }
    
    .contact-form h2,
    .contact-info h2 {
        font-size: 1.5rem;
    }
    
    .contact-method {
        gap: 0.75rem;
    }
    
    .method-icon {
        width: 35px;
        height: 35px;
        font-size: 1.15rem;
    }
    
    .method-info p {
        font-size: 0.95rem;
    }
    
    .contact-info .newsletter-form {
        flex-direction: column;
    }
    
    .contact-info .newsletter-form input,
    .contact-info .newsletter-form button {
        width: 100%;
    }
    
    .faq-question {
        padding: 1rem 1.25rem;
    }
    
    .faq-answer {
        padding: 0 1.25rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 1.25rem 1rem;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-float a {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .footer-content {
        gap: 1.5rem;
    }
    
    .footer {
        padding: 50px 0 20px;
    }
}

/* Small Mobile (425px) */
@media (max-width: 425px) {
    .contact-hero {
        padding: 90px 0 40px;
    }
    
    .contact-hero h1 {
        font-size: 1.75rem;
    }
    
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-form,
    .contact-info {
        padding: 1.25rem;
        border-radius: 10px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px 12px;
        font-size: 0.95rem;
    }
    
    .contact-method {
        gap: 0.5rem;
    }
    
    .method-icon {
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }
    
    .method-info p {
        font-size: 0.9rem;
    }
    
    .method-info span {
        font-size: 0.8rem;
    }
    
    .method-info .whatsapp-btn {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
    }
    
    .faq-question h3 {
        font-size: 0.95rem;
    }
    
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
    }
    
    .whatsapp-float a {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-bottom-links {
        justify-content: center;
    }
}

/* Extra Small Mobile (320px) */
@media (max-width: 320px) {
    .contact-hero h1 {
        font-size: 1.5rem;
    }
    
    .contact-hero .subtitle {
        font-size: 0.9rem;
    }
    
    .contact-form,
    .contact-info {
        padding: 1rem;
    }
    
    .form-group label {
        font-size: 0.9rem;
    }
    
    .method-icon {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }
    
    .footer-bottom-links {
        flex-direction: column;
        gap: 0.5rem;
    }
}
/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

/* Large Desktop (1200px+) */
@media (min-width: 1200px) {
    .contact-grid {
        gap: 5rem;
    }
}

/* Tablets (768px - 1024px) */
@media (max-width: 1024px) {
    .contact-hero {
        padding: 140px 0 70px;
    }
    
    .contact-hero h1 {
        font-size: 3rem;
    }
    
    .contact-grid {
        gap: 3rem;
    }
    
    .contact-form,
    .contact-info {
        padding: 2.5rem;
    }
}

/* Tablet Portrait (768px) */
@media (max-width: 768px) {
    .contact-hero {
        padding: 120px 0 60px;
        margin-top: 70px;
    }
    
    .contact-hero h1 {
        font-size: 2.5rem;
    }
    
    .contact-hero .subtitle {
        font-size: 1.1rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-form,
    .contact-info {
        padding: 2rem;
    }
    
    .faq-question {
        padding: 1.25rem 1.5rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
}

/* Mobile (576px) */
@media (max-width: 576px) {
    .contact-hero {
        padding: 100px 0 50px;
        margin-top: 60px;
    }
    
    .contact-hero h1 {
        font-size: 2rem;
    }
    
    .contact-hero .subtitle {
        font-size: 1rem;
    }
    
    .contact-form,
    .contact-info {
        padding: 1.5rem;
    }
    
    .contact-form h2,
    .contact-info h2 {
        font-size: 1.5rem;
    }
    
    .contact-method {
        gap: 0.75rem;
    }
    
    .method-icon {
        width: 35px;
        height: 35px;
        font-size: 1.15rem;
    }
    
    .method-info p {
        font-size: 0.95rem;
    }
    
    .contact-info .newsletter-form {
        flex-direction: column;
    }
    
    .contact-info .newsletter-form input,
    .contact-info .newsletter-form button {
        width: 100%;
    }
    
    .faq-question {
        padding: 1rem 1.25rem;
    }
    
    .faq-answer {
        padding: 0 1.25rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 1.25rem 1rem;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-float a {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
}

/* Small Mobile (425px) */
@media (max-width: 425px) {
    .contact-hero {
        padding: 90px 0 40px;
    }
    
    .contact-hero h1 {
        font-size: 1.75rem;
    }
    
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-form,
    .contact-info {
        padding: 1.25rem;
        border-radius: 10px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px 12px;
        font-size: 0.95rem;
    }
    
    .contact-method {
        gap: 0.5rem;
    }
    
    .method-icon {
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }
    
    .method-info p {
        font-size: 0.9rem;
    }
    
    .method-info span {
        font-size: 0.8rem;
    }
    
    .method-info .whatsapp-btn {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
    }
    
    .faq-question h3 {
        font-size: 0.95rem;
    }
    
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
    }
    
    .whatsapp-float a {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}

/* Extra Small Mobile (320px) */
@media (max-width: 320px) {
    .contact-hero h1 {
        font-size: 1.5rem;
    }
    
    .contact-hero .subtitle {
        font-size: 0.9rem;
    }
    
    .contact-form,
    .contact-info {
        padding: 1rem;
    }
    
    .form-group label {
        font-size: 0.9rem;
    }
    
    .method-icon {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }
}

/* Landscape Mobile */
@media (max-height: 500px) and (orientation: landscape) {
    .contact-hero {
        padding: 100px 0 40px;
    }
    
    .contact-hero h1 {
        font-size: 2rem;
    }
    
    .contact-section {
        padding: 60px 0;
    }
}

/* High-resolution displays */
@media (min-resolution: 192dpi) {
    .contact-form,
    .contact-info {
        border-radius: 18px;
    }
    
    .method-icon {
        box-shadow: 0 2px 8px rgba(108, 61, 184, 0.2);
    }
}

/* Print styles */
@media print {
    .whatsapp-float,
    .nav__cta,
    .loading-screen {
        display: none !important;
    }
    
    .contact-hero {
        background: none !important;
        color: black !important;
    }
    
    .contact-form,
    .contact-info {
        box-shadow: none !important;
        border: 1px solid #ccc !important;
    }
    
    .contact-info {
        background: white !important;
        color: black !important;
    }
}

/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .whatsapp-float a {
        animation: none;
    }
    
    .loading-spinner {
        animation: none;
        border: 4px solid var(--white);
    }
    
    .contact-method:hover,
    .faq-item:hover,
    .btn:hover {
        transform: none;
    }
}