/* ═══════════════════════════════════════════════════════════
   CONTACT PAGE - PREMIUM SHARP DESIGN
   ═══════════════════════════════════════════════════════════ */

/* Smooth Scrolling & Performance */
html {
    scroll-behavior: smooth;
}

/* Hardware Acceleration */
.contact-card-premium,
.map-card-premium,
.btn-map-direction,
.quote-content-contact {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    will-change: transform;
}

/* Quote Section */
.contact-quote-section {
    padding: 80px 0;
    background: #FAFAFA;
}

.quote-content-contact {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 60px 40px;
    background: var(--white);
    border: 2px solid #E5E7EB;
    border-radius: 0;
    position: relative;
}

.quote-icon-contact {
    font-size: 48px;
    color: #3A7BD5;
    margin-bottom: 30px;
    opacity: 0.3;
}

.quote-text-contact {
    font-size: 22px;
    font-weight: 300;
    color: var(--text-dark);
    line-height: 1.8;
    margin: 0 0 30px;
    font-style: italic;
}

.quote-author-contact {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.author-name-contact {
    font-size: 28px;
    font-weight: 400;
    font-family: 'Brush Script MT', 'Lucida Handwriting', 'Segoe Script', cursive;
    font-style: italic;
    color: #3A7BD5;
    margin: 0;
    letter-spacing: 1px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}
  

.author-title-contact {
    font-size: 14px;
    font-weight: 300;
    color: var(--text-gray);
}

/* Contact Main Section - Sharp Edges */
.contact-main-section {
    padding: 100px 0;
    background: var(--white);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
}

/* Contact Form - Sharp Edges */
.contact-form-wrapper {
    background: #FAFAFA;
    padding: 60px;
    border: 2px solid #E5E7EB;
    border-radius: 0;
}

.contact-form-wrapper h2 {
    font-size: 36px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.form-intro {
    font-size: 16px;
    font-weight: 300;
    color: var(--text-gray);
    margin-bottom: 40px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #E5E7EB;
    border-radius: 0;
    font-size: 15px;
    font-weight: 300;
    color: var(--text-dark);
    background: var(--white);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3A7BD5;
    box-shadow: 0 0 0 3px rgba(58, 123, 213, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.btn-large {
    width: 100%;
    padding: 18px 40px;
    background: linear-gradient(135deg, #3A7BD5 0%, #2563B8 100%);
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 0;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(58, 123, 213, 0.3);
}

.btn-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(58, 123, 213, 0.5);
}

/* Contact Info Sidebar - Sharp Edges */
.contact-info-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.info-card {
    background: var(--white);
    padding: 40px;
    border: 2px solid #E5E7EB;
    border-radius: 0;
    transition: all 0.3s ease;
}

.info-card:hover {
    border-color: #3A7BD5;
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3A7BD5 0%, #2563B8 100%);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.info-icon i {
    font-size: 28px;
    color: var(--white);
}

.info-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.info-card p {
    font-size: 15px;
    font-weight: 300;
    color: var(--text-gray);
    line-height: 1.7;
    margin: 0;
}

.info-card a {
    color: #3A7BD5;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
}

.info-card a:hover {
    color: #2563B8;
}

.info-note {
    font-size: 13px;
    color: var(--text-gray);
    margin-top: 8px;
}

/* Social Links in Sidebar */
.social-links-contact {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.social-link {
    width: 50px;
    height: 50px;
    background: #F3F4F6;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    font-size: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #3A7BD5;
    color: var(--white);
    transform: translateY(-3px);
}

/* Map & Social Media Premium Section */
.map-social-premium-section {
    padding: 100px 0;
    background: #FAFAFA;
}

.map-social-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    margin-top: 60px;
}

/* Map Card Premium */
.map-card-premium {
    background: var(--white);
    border: 2px solid #E5E7EB;
    border-radius: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.map-header {
    padding: 30px;
    background: #F8F9FA;
    border-bottom: 2px solid #E5E7EB;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.map-icon-header {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3A7BD5 0%, #2563B8 100%);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.map-icon-header i {
    font-size: 28px;
    color: var(--white);
}

.map-address-info {
    flex: 1;
}

.map-address-info h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 8px;
}

.map-address-info p {
    font-size: 15px;
    font-weight: 300;
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.map-container-premium {
    position: relative;
    width: 100%;
    height: 400px;
    border-bottom: 2px solid #E5E7EB;
    overflow: hidden;
}

.map-container-premium iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: none;
}

.map-actions {
    padding: 24px 30px;
    background: var(--white);
    text-align: center;
}

.btn-map-direction {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 32px;
    background: linear-gradient(135deg, #3A7BD5 0%, #2563B8 100%);
    color: var(--white);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(58, 123, 213, 0.3);
}

.btn-map-direction:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(58, 123, 213, 0.4);
    color: var(--white);
}

.btn-map-direction i {
    font-size: 18px;
}

/* Social Media Card Premium */
.social-media-card-premium {
    background: var(--white);
    border: 2px solid #E5E7EB;
    border-radius: 0;
    padding: 40px;
    display: flex;
    flex-direction: column;
}

.social-header {
    margin-bottom: 30px;
}

.social-header h3 {
    font-size: 28px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 12px;
}

.social-header p {
    font-size: 15px;
    font-weight: 300;
    color: var(--text-gray);
    margin: 0;
}

.social-links-premium {
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex-grow: 1;
}

.social-link-premium {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: #F8F9FA;
    border: 2px solid #E5E7EB;
    border-radius: 0;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link-premium:hover {
    border-color: currentColor;
    transform: translateX(8px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.social-icon-wrapper {
    width: 50px;
    height: 50px;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #1A1A1A;
    flex-shrink: 0;
    background: transparent;
}

.social-link-premium.instagram .social-icon-wrapper {
    background: transparent;
}

.social-link-premium.facebook .social-icon-wrapper {
    background: transparent;
}

.social-link-premium.youtube .social-icon-wrapper {
    background: transparent;
}

.social-link-premium.whatsapp .social-icon-wrapper {
    background: transparent;
}

.social-link-premium.linkedin .social-icon-wrapper {
    background: transparent;
}

.social-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex-grow: 1;
}

.social-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
}

.social-handle {
    font-size: 14px;
    font-weight: 300;
    color: var(--text-gray);
}

.social-arrow {
    font-size: 18px;
    color: var(--text-gray);
    transition: all 0.3s ease;
}

.social-link-premium:hover .social-arrow {
    color: #1A1A1A;
    transform: translateX(4px);
}

.social-link-premium.instagram {
    color: #1A1A1A;
}

.social-link-premium.facebook {
    color: #1A1A1A;
}

.social-link-premium.youtube {
    color: #1A1A1A;
}

.social-link-premium.whatsapp {
    color: #1A1A1A;
}

.social-link-premium.linkedin {
    color: #1A1A1A;
}

.social-cta {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px solid #E5E7EB;
}

.social-cta p {
    font-size: 14px;
    font-weight: 300;
    color: var(--text-gray);
    text-align: center;
    margin: 0;
}

/* FAQ Section */
.faq-contact-section {
    padding: 100px 0;
    background: var(--white);
}

.faq-grid-two-col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.faq-item {
    background: #FAFAFA;
    border: 2px solid #E5E7EB;
    border-radius: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #3A7BD5;
}

.faq-question {
    width: 100%;
    padding: 24px 30px;
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    cursor: pointer;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(58, 123, 213, 0.05);
}

.faq-question i {
    font-size: 16px;
    color: #3A7BD5;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 30px 24px;
    font-size: 15px;
    font-weight: 300;
    color: var(--text-gray);
    line-height: 1.7;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .contact-layout {
        grid-template-columns: 1fr;
    }
    
    .map-social-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contact-quote-section {
        padding: 60px 0;
    }
    
    .quote-content-contact {
        padding: 40px 30px;
    }
    
    .quote-text-contact {
        font-size: 18px;
    }
    
    .contact-main-section {
        padding: 60px 0;
    }
    
    .contact-form-wrapper {
        padding: 40px 30px;
    }
    
    .contact-form-wrapper h2 {
        font-size: 28px;
    }
    
    .map-social-premium-section {
        padding: 60px 0;
    }
    
    .map-header {
        flex-direction: column;
    }
    
    .social-media-card-premium {
        padding: 30px;
    }
    
    .faq-contact-section {
        padding: 60px 0;
    }
    
    .faq-grid-two-col {
        grid-template-columns: 1fr;
    }
}


/* Author Logo Styling */
.author-logo-contact {
    height: 40px;
    width: auto;
    vertical-align: middle;
    margin-left: 8px;
    display: inline-block;
}

.author-title-contact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
