.elementor-655 .elementor-element.elementor-element-7630f51{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-1602c53 *//* SEAMLESS GRID LAYOUT - NO BLANK SPACES */
.contact-methods {
    padding: 80px 0;
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    align-items: start;
}

/* Left Column - Quick Message Form */
.quick-message-section {
    background: white;
    border-radius: 25px;
    padding: 35px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
    opacity: 0;
    animation: slideUp 1s ease-out 0.4s forwards;
    height: fit-content;
    grid-row: span 1;
}

/* Right Column - Seamless Grid of Cards */
.contact-info-section {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    opacity: 0;
    animation: slideUp 1s ease-out 0.6s forwards;
    width: 100%;
    height: fit-content;
}

/* All Info Cards - Consistent Styling */
.info-card {
    background: white;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    width: 100%;
    margin: 0;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    border-radius: 20px 20px 0 0;
}

.email-directory::before { background: linear-gradient(90deg, #3182ce, #2c5282); }
.whatsapp-card::before { background: linear-gradient(90deg, #25d366, #128c7e); }
.response-card::before { background: linear-gradient(90deg, #38a169, #2f855a); }
.hours-card::before { background: linear-gradient(90deg, #ff8c00, #ff6b00); }

.info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

/* Card Headers - Compact */
.card-header {
    text-align: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f1f5f9;
}

.card-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    color: white;
    font-size: 1.3rem;
}

.email-bg { background: linear-gradient(135deg, #3182ce, #2c5282); }
.whatsapp-bg { background: linear-gradient(135deg, #25d366, #128c7e); }
.time-bg { background: linear-gradient(135deg, #38a169, #2f855a); }
.hours-bg { background: linear-gradient(135deg, #ff8c00, #ff6b00); }

.card-header h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 6px;
    line-height: 1.2;
}

.card-header p {
    color: #64748b;
    font-size: 0.9rem;
    margin: 0;
}

/* Email Directory - Compact List */
.email-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
}

.email-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 14px 16px;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.email-item:last-child {
    border-bottom: none;
}

.email-item:hover {
    background: #e6f3ff;
    padding-left: 20px;
}

.email-type {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: #2d3748;
    font-size: 12px;
}

.email-type i {
    color: #1e90ff;
    width: 14px;
    font-size: 12px;
}

.email-address {
    color: #1e90ff;
    text-decoration: none;
    font-weight: 500;
    font-size: 11px;
    transition: all 0.3s ease;
    word-break: break-all;
}

.email-address:hover {
    color: #0066cc;
    text-decoration: underline;
}

/* WhatsApp Card - Compact */
.whatsapp-content {
    text-align: center;
}

.whatsapp-features {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 18px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f0fff4;
    padding: 8px 12px;
    border-radius: 20px;
    border: 1px solid #9ae6b4;
    color: #22543d;
    font-weight: 600;
    font-size: 11px;
}

.feature i {
    color: #25d366;
    width: 12px;
    font-size: 11px;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 12px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* Response Promise - Compact List */
.response-times {
    display: flex;
    flex-direction: column;
    gap: 0;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
}

.response-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.response-item:last-child {
    border-bottom: none;
}

.response-item:hover {
    background: #e6fffa;
    padding-left: 20px;
}

.response-item.highlight {
    background: #f0fff4;
    border-color: #9ae6b4;
}

.response-item.highlight:hover {
    background: #e6fffa;
}

.response-type {
    font-weight: 600;
    color: #2d3748;
    font-size: 12px;
}

.response-time {
    color: #38a169;
    font-weight: 600;
    font-size: 12px;
}

/* Working Hours - Compact */
.hours-content {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 16px;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    border-radius: 0;
}

.hours-item:first-child {
    border-radius: 10px 10px 0 0;
}

.hours-item:last-child {
    border-radius: 0 0 10px 10px;
    border-bottom: none;
}

.hours-item.active {
    background: #f0fff4;
    border-color: #9ae6b4;
}

.hours-item.closed {
    background: #fff5f5;
    border-color: #fed7d7;
}

.hours-item:hover {
    padding-left: 20px;
}

.day {
    font-weight: 700;
    color: #1a202c;
    font-size: 13px;
}

.time {
    font-weight: 600;
    color: #4a5568;
    font-size: 11px;
    text-align: right;
}

.status {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 10px;
    font-weight: 600;
    margin-top: 2px;
}

.status i {
    font-size: 6px;
}

.status.online {
    color: #22543d;
}

.status.online i {
    color: #25d366;
    animation: pulse 2s infinite;
}

.status.offline {
    color: #c53030;
}

.status.offline i {
    color: #e53e3e;
}

/* Form Section - Optimized Height */
.form-header {
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f1f5f9;
}

.form-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1e90ff, #0066cc);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 6px 20px rgba(30, 144, 255, 0.3);
    animation: pulse 2s infinite;
}

.quick-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.input-group {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #718096;
    font-size: 14px;
    z-index: 2;
}

.form-input {
    width: 100%;
    padding: 14px 16px 14px 40px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 14px;
    color: #2d3748;
    background: #f8fafc;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-input:focus {
    outline: none;
    border-color: #1e90ff;
    background: white;
    box-shadow: 0 0 0 3px rgba(30, 144, 255, 0.1);
}

.message-textarea {
    resize: vertical;
    min-height: 80px;
    font-family: inherit;
}

.message-textarea + .input-icon {
    top: 20px;
    transform: none;
}

.send-btn {
    background: linear-gradient(135deg, #1e90ff, #0066cc);
    color: white;
    padding: 14px 24px;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    font-family: inherit;
    box-shadow: 0 3px 12px rgba(30, 144, 255, 0.3);
}

.send-btn:hover {
    background: linear-gradient(135deg, #0066cc, #1e90ff);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 144, 255, 0.4);
}

.form-note {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #f0f8ff;
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid #e6f3ff;
    color: #1e90ff;
    font-size: 11px;
    margin-top: -5px;
}

/* Mobile Responsive - Seamless Grid */
@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .contact-info-section {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

@media (max-width: 768px) {
    .contact-methods {
        padding: 60px 0;
    }
    
    .contact-grid {
        gap: 20px;
    }
    
    .contact-info-section {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .info-card {
        padding: 20px;
    }
    
    .quick-message-section {
        padding: 25px 20px;
    }
    
    .card-header {
        margin-bottom: 15px;
        padding-bottom: 12px;
    }
    
    .card-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .form-icon {
        width: 55px;
        height: 55px;
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .contact-info-section {
        gap: 12px;
    }
    
    .info-card {
        padding: 18px 15px;
    }
    
    .quick-message-section {
        padding: 20px 15px;
    }
    
    .hours-item,
    .response-item {
        flex-direction: column;
        text-align: center;
        gap: 6px;
        padding: 12px;
    }
    
    .time {
        text-align: center;
    }
    
    .email-item {
        padding: 12px 14px;
    }
    
    .feature {
        padding: 6px 10px;
        font-size: 10px;
    }
}

/* Additional optimization for seamless layout */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Ensure no extra spacing */
.contact-methods .container {
    height: 100%;
}

.contact-grid {
    height: 100%;
    align-content: start;
}/* End custom CSS */