/* Contact Page Styles */

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

/* Bootstrap Container Override for Header Alignment */
.navbar .container {
    max-width: 1200px !important;
}

@media (min-width: 1400px) {
    .navbar .container {
        max-width: 1320px !important;
    }
}

/* Contact Hero Section */
.ewbly-contact-hero {
    background: #F8F8F8;
    padding: 0;
    color: #000000;
    min-height: 50vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.ewbly-contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="contact-pattern" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="10" cy="10" r="0.5" fill="%23ffffff" opacity="0.05"/><circle cx="40" cy="40" r="0.5" fill="%23ffffff" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23contact-pattern)"/></svg>');
    opacity: 0.3;
}

.ewbly-contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    width: 100%;
    position: relative;
    z-index: 2;
}

.ewbly-contact-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.ewbly-contact-hero-text {
    max-width: 600px;
}

.ewbly-contact-hero-title {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin: 0 0 24px 0;
    letter-spacing: -0.02em;
}

.ewbly-contact-hero-description {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.6;
    margin: 0 0 40px 0;
    color: #4A5568;
}

.ewbly-contact-hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.ewbly-contact-hero-btn-primary {
    background: #3182CE;
    color: #FFFFFF;
    border: none;
    border-radius: 12px;
    padding: 18px 36px;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.ewbly-contact-hero-btn-primary:hover {
    background: #2C5AA0;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    color: #FFFFFF;
}

.ewbly-contact-hero-btn-secondary {
    background: transparent;
    color: #3182CE;
    border: 2px solid #3182CE;
    border-radius: 12px;
    padding: 16px 34px;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.ewbly-contact-hero-btn-secondary:hover {
    background: #3182CE;
    color: #FFFFFF;
    transform: translateY(-3px);
    text-decoration: none;
}

.ewbly-contact-hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.ewbly-contact-hero-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: #4A5568;
}

.ewbly-contact-hero-feature i {
    color: #10B981;
    font-size: 1.125rem;
}

.ewbly-contact-hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.ewbly-contact-hero-img {
    width: 100%;
    max-width: 550px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease;
}

.ewbly-contact-hero-img:hover {
    transform: scale(1.02);
}

.ewbly-contact-floating-card {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: #FFFFFF;
    border-radius: 16px;
    padding: 20px 24px;
    box-shadow: 0 15px 35px -5px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 16px;
    min-width: 300px;
}

.ewbly-contact-card-content {
    display: flex;
    align-items: center;
    gap: 16px;
}

.ewbly-contact-avatar-group {
    display: flex;
    position: relative;
}

.ewbly-contact-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid #FFFFFF;
    object-fit: cover;
    margin-left: -8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.ewbly-contact-avatar:first-child {
    margin-left: 0;
}

.ewbly-contact-card-title {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #2D3748;
    margin: 0;
}

.ewbly-contact-card-subtitle {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 0.875rem;
    font-weight: 400;
    color: #4A5568;
    margin: 0;
}

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

.ewbly-contact-form-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.ewbly-contact-form-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.ewbly-contact-info {
    background: linear-gradient(135deg, #3182CE 0%, #2C5AA0 100%);
    border-radius: 20px;
    padding: 40px;
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
}

.ewbly-contact-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="info-pattern" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="10" cy="10" r="0.5" fill="%23ffffff" opacity="0.05"/><circle cx="40" cy="40" r="0.5" fill="%23ffffff" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23info-pattern)"/></svg>');
    opacity: 0.3;
}

.ewbly-contact-info-content {
    position: relative;
    z-index: 2;
}

.ewbly-contact-info-title {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 32px 0;
    line-height: 1.2;
}

.ewbly-contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.ewbly-contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.ewbly-contact-info-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.ewbly-contact-info-icon:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

.ewbly-contact-info-icon i {
    font-size: 1.25rem;
    color: #FFFFFF;
}

.ewbly-contact-info-details h6 {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: #FFFFFF;
    margin: 0 0 8px 0;
}

.ewbly-contact-info-details p {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.5;
}

.ewbly-contact-form {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.15);
    border: 1px solid #E5E7EB;
}

.ewbly-contact-form-title {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #2D3748;
    margin: 0 0 32px 0;
    line-height: 1.2;
}

.ewbly-form-group {
    margin-bottom: 24px;
}

.ewbly-form-label {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #2D3748;
    margin-bottom: 8px;
    display: block;
}

.ewbly-form-control {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #E5E7EB;
    border-radius: 12px;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: #2D3748;
    background: #FFFFFF;
    transition: all 0.3s ease;
}

.ewbly-form-control:focus {
    outline: none;
    border-color: #3182CE;
    box-shadow: 0 0 0 3px rgba(49, 130, 206, 0.1);
    transform: translateY(-1px);
}

.ewbly-form-control.is-valid {
    border-color: #10B981;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2310B981' d='m2.3 6.73.94-.94 1.89-1.89-1.89-1.89-.94-.94L.5 4.78z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.ewbly-form-control.is-invalid {
    border-color: #EF4444;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23EF4444'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath d='m5.8 4.6 1.4 1.4 1.4-1.4'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.ewbly-form-control::placeholder {
    color: #9CA3AF;
    font-weight: 400;
}

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

.ewbly-form-check {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 24px;
}

.ewbly-form-check-input {
    width: 20px;
    height: 20px;
    margin: 0;
    accent-color: #3182CE;
}

.ewbly-form-check-label {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 0.95rem;
    font-weight: 400;
    color: #4A5568;
    line-height: 1.5;
    cursor: pointer;
}

.ewbly-form-submit-btn {
    width: 100%;
    background: #3182CE;
    color: #FFFFFF;
    border: none;
    border-radius: 12px;
    padding: 18px 32px;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    position: relative;
    overflow: hidden;
}

.ewbly-form-submit-btn:hover:not(:disabled) {
    background: #2C5AA0;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(49, 130, 206, 0.3);
}

.ewbly-form-submit-btn:disabled {
    opacity: 0.8;
    cursor: not-allowed;
    transform: none !important;
}

.ewbly-form-submit-btn.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    animation: loading-shimmer 1.5s infinite;
}

@keyframes loading-shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.ewbly-form-feedback {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 0.875rem;
    margin-top: 8px;
    display: block;
}

.ewbly-form-feedback.valid {
    color: #10B981;
}

.ewbly-form-feedback.invalid {
    color: #EF4444;
}

/* FAQ Section */
.ewbly-faq-section {
    background: #F8F8F8;
}

.ewbly-faq-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.ewbly-faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.ewbly-faq-title {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #2D3748;
    margin: 0 0 20px 0;
    line-height: 1.2;
}

.ewbly-faq-subtitle {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.125rem;
    font-weight: 400;
    color: #4A5568;
    line-height: 1.6;
    margin: 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.ewbly-faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ewbly-faq-item {
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.ewbly-faq-item:hover {
    box-shadow: 0 8px 25px -5px rgba(0, 0, 0, 0.1);
    border-color: #3182CE;
}

.ewbly-faq-question {
    width: 100%;
    background: #F8FAFC;
    border: none;
    padding: 24px;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: #2D3748;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.ewbly-faq-question:hover {
    background: #F1F5F9;
    color: #3182CE;
}

.ewbly-faq-question.active {
    background: #3182CE;
    color: #FFFFFF;
}

.ewbly-faq-icon {
    font-size: 1.25rem;
    transition: transform 0.3s ease;
}

.ewbly-faq-question.active .ewbly-faq-icon {
    transform: rotate(45deg);
}

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

.ewbly-faq-answer.active {
    padding: 24px;
    max-height: 200px;
}

.ewbly-faq-answer-content {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: #4A5568;
    line-height: 1.6;
    margin: 0;
}

/* Toast Notifications */
.ewbly-toast {
    background: #FFFFFF;
    border: none;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
    border-left: 4px solid;
    animation: slideInRight 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.ewbly-toast.success {
    border-left-color: #10B981;
}

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

.ewbly-toast-header {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px 12px 0 0;
    font-weight: 600;
    padding: 16px 20px;
}

.ewbly-toast-body {
    padding: 16px 20px;
    color: #374151;
    font-size: 0.95rem;
}

/* Responsive Design */
@media (min-width: 1400px) {
    .ewbly-contact-container,
    .ewbly-contact-form-container,
    .ewbly-faq-container {
        max-width: 1320px;
        padding: 40px 20px;
    }
}

@media (max-width: 1399px) {
    .ewbly-contact-container,
    .ewbly-contact-form-container,
    .ewbly-faq-container {
        max-width: 1200px;
        padding: 40px 20px;
    }
}

@media (max-width: 1199px) {
    .ewbly-contact-container,
    .ewbly-contact-form-container,
    .ewbly-faq-container {
        max-width: 100%;
        padding: 40px 20px;
    }
    
    .ewbly-contact-hero-title {
        font-size: 3rem;
    }
    .ewbly-contact-hero-description {
        font-size: 1.125rem;
    }
    .ewbly-contact-hero-content {
        gap: 50px;
    }
    .ewbly-contact-hero-img {
        max-width: 450px;
    }
    .ewbly-contact-form-content {
        gap: 40px;
    }
    .ewbly-faq-title {
        font-size: 2.25rem;
    }
}

@media (max-width: 991px) {
    .ewbly-contact-container,
    .ewbly-contact-form-container,
    .ewbly-faq-container {
        max-width: 100%;
        padding: 40px 20px;
    }
    
    .ewbly-contact-hero {
        padding: 0;
        min-height: auto;
    }
    .ewbly-contact-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    .ewbly-contact-hero-buttons {
        justify-content: center;
    }
    .ewbly-contact-hero-features {
        justify-content: center;
    }
    .ewbly-contact-hero-img {
        max-width: 500px;
    }
    .ewbly-contact-floating-card {
        bottom: -15px;
    }
    .ewbly-contact-form-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .ewbly-contact-form-section,
    .ewbly-faq-section {
        padding: 80px 0;
    }
}

@media (max-width: 767px) {
    .ewbly-contact-container,
    .ewbly-contact-form-container,
    .ewbly-faq-container {
        max-width: 100%;
        padding: 40px 15px;
    }
    
    .ewbly-contact-hero {
        padding: 0;
    }
    .ewbly-contact-hero-title {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }
    .ewbly-contact-hero-description {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    .ewbly-contact-hero-buttons {
        flex-direction: column;
        gap: 16px;
        margin-bottom: 30px;
    }
    .ewbly-contact-hero-btn-primary,
    .ewbly-contact-hero-btn-secondary {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
        font-size: 1rem;
        padding: 16px 32px;
    }
    .ewbly-contact-hero-features {
        flex-direction: column;
        gap: 12px;
    }
    .ewbly-contact-hero-feature {
        font-size: 0.95rem;
    }
    .ewbly-contact-hero-img {
        max-width: 100%;
        border-radius: 16px;
    }
    .ewbly-contact-floating-card {
        min-width: 280px;
        padding: 16px 20px;
        bottom: -10px;
    }
    .ewbly-contact-card-title {
        font-size: 0.95rem;
    }
    .ewbly-contact-card-subtitle {
        font-size: 0.8rem;
    }
    .ewbly-contact-avatar {
        width: 36px;
        height: 36px;
    }
    .ewbly-contact-info {
        padding: 30px;
    }
    .ewbly-contact-info-title {
        font-size: 1.75rem;
    }
    .ewbly-contact-form {
        padding: 30px;
    }
    .ewbly-contact-form-title {
        font-size: 1.75rem;
    }
    .ewbly-contact-form-section,
    .ewbly-faq-section {
        padding: 60px 0;
    }
    .ewbly-faq-title {
        font-size: 2rem;
    }
    .ewbly-faq-question {
        padding: 20px;
        font-size: 1rem;
    }
}

@media (max-width: 575px) {
    .ewbly-contact-container,
    .ewbly-contact-form-container,
    .ewbly-faq-container {
        max-width: 100%;
        padding: 40px 12px;
    }
    
    .ewbly-contact-hero {
        padding: 0;
    }
    .ewbly-contact-hero-title {
        font-size: 2rem;
        margin-bottom: 16px;
    }
    .ewbly-contact-hero-description {
        font-size: 0.95rem;
        margin-bottom: 25px;
    }
    .ewbly-contact-hero-btn-primary,
    .ewbly-contact-hero-btn-secondary {
        font-size: 0.95rem;
        padding: 14px 28px;
    }
    .ewbly-contact-hero-feature {
        font-size: 0.9rem;
    }
    .ewbly-contact-floating-card {
        min-width: 250px;
        padding: 14px 18px;
    }
    .ewbly-contact-card-title {
        font-size: 0.9rem;
    }
    .ewbly-contact-card-subtitle {
        font-size: 0.75rem;
    }
    .ewbly-contact-avatar {
        width: 32px;
        height: 32px;
    }
    .ewbly-contact-info {
        padding: 24px;
    }
    .ewbly-contact-info-title {
        font-size: 1.5rem;
    }
    .ewbly-contact-form {
        padding: 24px;
    }
    .ewbly-contact-form-title {
        font-size: 1.5rem;
    }
    .ewbly-contact-form-section,
    .ewbly-faq-section {
        padding: 50px 0;
    }
    .ewbly-faq-title {
        font-size: 1.75rem;
    }
    .ewbly-faq-question {
        padding: 16px;
        font-size: 0.95rem;
    }
}

@media (max-width: 479px) {
    .ewbly-contact-container,
    .ewbly-contact-form-container,
    .ewbly-faq-container {
        max-width: 100%;
        padding: 40px 10px;
    }
    
    .ewbly-contact-hero {
        padding: 0;
    }
    .ewbly-contact-hero-title {
        font-size: 1.75rem;
        margin-bottom: 12px;
    }
    .ewbly-contact-hero-description {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }
    .ewbly-contact-hero-btn-primary,
    .ewbly-contact-hero-btn-secondary {
        font-size: 0.9rem;
        padding: 12px 24px;
    }
    .ewbly-contact-hero-feature {
        font-size: 0.85rem;
    }
    .ewbly-contact-floating-card {
        min-width: 220px;
        padding: 12px 16px;
    }
    .ewbly-contact-card-title {
        font-size: 0.85rem;
    }
    .ewbly-contact-card-subtitle {
        font-size: 0.7rem;
    }
    .ewbly-contact-avatar {
        width: 28px;
        height: 28px;
    }
    .ewbly-contact-info {
        padding: 20px;
    }
    .ewbly-contact-info-title {
        font-size: 1.25rem;
    }
    .ewbly-contact-form {
        padding: 20px;
    }
    .ewbly-contact-form-title {
        font-size: 1.25rem;
    }
    .ewbly-contact-form-section,
    .ewbly-faq-section {
        padding: 40px 0;
    }
    .ewbly-faq-title {
        font-size: 1.5rem;
    }
    .ewbly-faq-question {
        padding: 14px;
        font-size: 0.9rem;
    }
}

@media (max-width: 359px) {
    .ewbly-contact-container,
    .ewbly-contact-form-container,
    .ewbly-faq-container {
        max-width: 100%;
        padding: 40px 8px;
    }
    
    .ewbly-contact-hero {
        padding: 0;
    }
    .ewbly-contact-hero-title {
        font-size: 1.5rem;
    }
    .ewbly-contact-hero-description {
        font-size: 0.85rem;
    }
    .ewbly-contact-hero-btn-primary,
    .ewbly-contact-hero-btn-secondary {
        font-size: 0.85rem;
        padding: 10px 20px;
    }
    .ewbly-contact-hero-feature {
        font-size: 0.8rem;
    }
    .ewbly-contact-floating-card {
        min-width: 180px;
        padding: 10px 14px;
    }
    .ewbly-contact-card-title {
        font-size: 0.8rem;
    }
    .ewbly-contact-card-subtitle {
        font-size: 0.65rem;
    }
    .ewbly-contact-avatar {
        width: 24px;
        height: 24px;
    }
    .ewbly-faq-title {
        font-size: 1.25rem;
    }
    .ewbly-faq-question {
        padding: 12px;
        font-size: 0.85rem;
    }
}
