/* ============================================
   Contact Page Styles
   Minimal, Simple, Creative Design - Compact
   ============================================ */

.contact-main {
    padding: var(--guru-space-md);
    padding-bottom: 130px; /* Space for bottom bar */
    max-width: 600px;
    margin: 0 auto;
}

.contact-section {
    background: rgb(var(--background-primary));
    border-radius: var(--guru-radius-md);
    padding: var(--guru-space-md);
    margin-bottom: var(--guru-space-md);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
}

.contact-section-title {
    font-size: 1rem;
    font-weight: 700;
    color: rgb(var(--color-text-primary));
    margin: 0 0 var(--guru-space-sm) 0;
    padding-bottom: var(--guru-space-xs);
    border-bottom: 1px solid rgba(var(--input-border-color), 0.1);
    display: flex;
    align-items: center;
    gap: var(--guru-space-xs);
}

.google-icon-inline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.google-icon-inline svg {
    width: 100%;
    height: 100%;
}

/* ============================================
   Contact Info Compact
   ============================================ */

.contact-info-compact {
    display: flex;
    flex-direction: column;
    gap: var(--guru-space-xs);
}

.contact-action-btn {
    display: flex;
    align-items: center;
    gap: var(--guru-space-xs);
    padding: var(--guru-space-sm) var(--guru-space-md);
    background: rgba(var(--color-primary), 0.05);
    border: 1px solid rgba(var(--color-primary), 0.1);
    border-radius: var(--guru-radius-sm);
    text-decoration: none;
    color: rgb(var(--color-text-primary));
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.2s ease;
    cursor: pointer;
}

.contact-action-btn:hover {
    background: rgba(var(--color-primary), 0.1);
    border-color: rgba(var(--color-primary), 0.2);
    transform: translateY(-1px);
}

.contact-action-btn .btn-icon {
    font-size: 1rem;
    line-height: 1;
}

.contact-action-btn .btn-text {
    flex: 1;
}

.contact-action-btn.phone {
    background: rgba(76, 175, 80, 0.1);
    border-color: rgba(76, 175, 80, 0.2);
    color: #4caf50;
}

.contact-action-btn.phone:hover {
    background: rgba(76, 175, 80, 0.15);
}

.contact-action-btn.email {
    background: rgba(33, 150, 243, 0.1);
    border-color: rgba(33, 150, 243, 0.2);
    color: #2196f3;
}

.contact-action-btn.email:hover {
    background: rgba(33, 150, 243, 0.15);
}

.contact-action-btn.maps {
    background: rgba(244, 67, 54, 0.1);
    border-color: rgba(244, 67, 54, 0.2);
    color: #f44336;
}

.contact-action-btn.maps:hover {
    background: rgba(244, 67, 54, 0.15);
}

.contact-action-btn.google-business {
    background: rgba(66, 133, 244, 0.1);
    border-color: rgba(66, 133, 244, 0.2);
    color: #4285f4;
}

.contact-action-btn.google-business:hover {
    background: rgba(66, 133, 244, 0.15);
}

.contact-action-btn.google-review {
    background: rgba(255, 193, 7, 0.1);
    border-color: rgba(255, 193, 7, 0.2);
    color: #ffc107;
}

.contact-action-btn.google-review:hover {
    background: rgba(255, 193, 7, 0.15);
}

.contact-info-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: var(--guru-space-xs) 0;
    font-size: 0.8125rem;
}

.info-label {
    color: rgba(var(--color-text-primary), 0.6);
    font-weight: 500;
}

.info-value {
    color: rgb(var(--color-text-primary));
    font-weight: 400;
    line-height: 1.4;
}

/* ============================================
   Google Maps Compact
   ============================================ */

.contact-map-compact {
    width: 100%;
    height: 250px;
    border-radius: var(--guru-radius-sm);
    overflow: hidden;
    margin-top: var(--guru-space-xs);
    margin-bottom: var(--guru-space-sm);
    border: 1px solid rgba(var(--input-border-color), 0.1);
}

.contact-map-compact iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ============================================
   Google Business Compact
   ============================================ */

.google-business-compact {
    display: flex;
    flex-direction: row;
    gap: var(--guru-space-xs);
    flex-wrap: wrap;
    margin-top: var(--guru-space-sm);
}

.google-btn-minimal {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--guru-space-xs);
    padding: var(--guru-space-xs) var(--guru-space-md);
    background: rgba(var(--color-primary), 0.05);
    border: 1px solid rgba(var(--color-primary), 0.15);
    border-radius: var(--guru-radius-sm);
    text-decoration: none;
    color: rgb(var(--color-text-primary));
    font-size: 0.8125rem;
    font-weight: 500;
    transition: all 0.2s ease;
    cursor: pointer;
    flex: 1;
    min-width: 120px;
}

.google-btn-minimal:hover {
    background: rgba(var(--color-primary), 0.1);
    border-color: rgba(var(--color-primary), 0.25);
    transform: translateY(-1px);
}

.google-btn-icon {
    font-size: 1rem;
    line-height: 1;
}

.google-btn-text {
    font-size: 0.8125rem;
    font-weight: 500;
}

.google-btn-minimal.google-view {
    background: rgba(66, 133, 244, 0.08);
    border-color: rgba(66, 133, 244, 0.2);
    color: #4285f4;
}

.google-btn-minimal.google-view:hover {
    background: rgba(66, 133, 244, 0.12);
    border-color: rgba(66, 133, 244, 0.3);
    color: #4285f4;
}

.google-btn-minimal.google-review {
    background: rgba(255, 193, 7, 0.08);
    border-color: rgba(255, 193, 7, 0.2);
    color: #ffc107;
}

.google-btn-minimal.google-review:hover {
    background: rgba(255, 193, 7, 0.12);
    border-color: rgba(255, 193, 7, 0.3);
    color: #ffc107;
}

/* ============================================
   Social Media List
   ============================================ */

.social-media-list {
    display: flex;
    flex-direction: column;
    gap: var(--guru-space-xs);
    margin-top: var(--guru-space-xs);
}

.social-item {
    display: flex;
    align-items: center;
    gap: var(--guru-space-sm);
    padding: var(--guru-space-sm) var(--guru-space-md);
    background: rgba(var(--color-primary), 0.03);
    border: 1px solid rgba(var(--color-primary), 0.1);
    border-radius: var(--guru-radius-sm);
    text-decoration: none;
    color: rgb(var(--color-text-primary));
    transition: all 0.2s ease;
    cursor: pointer;
}

.social-item:hover {
    background: rgba(var(--color-primary), 0.08);
    border-color: rgba(var(--color-primary), 0.2);
    transform: translateX(4px);
}

.social-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--guru-radius-sm);
    background: rgba(var(--color-primary), 0.05);
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.social-item:hover .social-icon-wrapper {
    transform: scale(1.1);
}

.social-icon {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.social-content {
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 2px;
}

.social-name {
    font-size: 0.875rem;
    font-weight: 600;
    color: rgb(var(--color-text-primary));
}

.social-action {
    font-size: 0.75rem;
    color: rgba(var(--color-text-primary), 0.6);
    font-weight: 400;
}

/* Facebook - Blue */
.social-item.facebook {
    background: rgba(59, 89, 152, 0.08);
    border-color: rgba(59, 89, 152, 0.3);
    color: #3b5998;
}

.social-item.facebook:hover {
    background: rgba(59, 89, 152, 0.15);
    border-color: rgba(59, 89, 152, 0.5);
    color: #3b5998;
}

.social-item.facebook .social-icon-wrapper {
    background: rgba(59, 89, 152, 0.15);
    color: #3b5998;
}

.social-item.facebook:hover .social-icon-wrapper {
    background: rgba(59, 89, 152, 0.25);
    transform: scale(1.1);
}

.social-item.facebook .social-name {
    color: #3b5998;
}

/* Instagram - Gradient Pink/Red/Orange */
.social-item.instagram {
    background: linear-gradient(135deg, rgba(225, 48, 108, 0.08) 0%, rgba(253, 29, 29, 0.08) 50%, rgba(252, 175, 69, 0.08) 100%);
    border-color: rgba(225, 48, 108, 0.3);
    color: #e1306c;
}

.social-item.instagram:hover {
    background: linear-gradient(135deg, rgba(225, 48, 108, 0.15) 0%, rgba(253, 29, 29, 0.15) 50%, rgba(252, 175, 69, 0.15) 100%);
    border-color: rgba(225, 48, 108, 0.5);
    color: #e1306c;
}

.social-item.instagram .social-icon-wrapper {
    background: linear-gradient(135deg, rgba(225, 48, 108, 0.2) 0%, rgba(253, 29, 29, 0.2) 50%, rgba(252, 175, 69, 0.2) 100%);
    color: #e1306c;
}

.social-item.instagram:hover .social-icon-wrapper {
    background: linear-gradient(135deg, rgba(225, 48, 108, 0.3) 0%, rgba(253, 29, 29, 0.3) 50%, rgba(252, 175, 69, 0.3) 100%);
    transform: scale(1.1);
}

.social-item.instagram .social-name {
    color: #e1306c;
}

/* Twitter - Blue */
.social-item.twitter {
    background: rgba(29, 161, 242, 0.08);
    border-color: rgba(29, 161, 242, 0.3);
    color: #1da1f2;
}

.social-item.twitter:hover {
    background: rgba(29, 161, 242, 0.15);
    border-color: rgba(29, 161, 242, 0.5);
    color: #1da1f2;
}

.social-item.twitter .social-icon-wrapper {
    background: rgba(29, 161, 242, 0.15);
    color: #1da1f2;
}

.social-item.twitter:hover .social-icon-wrapper {
    background: rgba(29, 161, 242, 0.25);
    transform: scale(1.1);
}

.social-item.twitter .social-name {
    color: #1da1f2;
}

/* LinkedIn - Blue */
.social-item.linkedin {
    background: rgba(0, 119, 181, 0.08);
    border-color: rgba(0, 119, 181, 0.3);
    color: #0077b5;
}

.social-item.linkedin:hover {
    background: rgba(0, 119, 181, 0.15);
    border-color: rgba(0, 119, 181, 0.5);
    color: #0077b5;
}

.social-item.linkedin .social-icon-wrapper {
    background: rgba(0, 119, 181, 0.15);
    color: #0077b5;
}

.social-item.linkedin:hover .social-icon-wrapper {
    background: rgba(0, 119, 181, 0.25);
    transform: scale(1.1);
}

.social-item.linkedin .social-name {
    color: #0077b5;
}

/* YouTube - Red */
.social-item.youtube {
    background: rgba(255, 0, 0, 0.08);
    border-color: rgba(255, 0, 0, 0.3);
    color: #ff0000;
}

.social-item.youtube:hover {
    background: rgba(255, 0, 0, 0.15);
    border-color: rgba(255, 0, 0, 0.5);
    color: #ff0000;
}

.social-item.youtube .social-icon-wrapper {
    background: rgba(255, 0, 0, 0.15);
    color: #ff0000;
}

.social-item.youtube:hover .social-icon-wrapper {
    background: rgba(255, 0, 0, 0.25);
    transform: scale(1.1);
}

.social-item.youtube .social-name {
    color: #ff0000;
}

/* TikTok - Black */
.social-item.tiktok {
    background: rgba(0, 0, 0, 0.08);
    border-color: rgba(0, 0, 0, 0.3);
    color: #000000;
}

.social-item.tiktok:hover {
    background: rgba(0, 0, 0, 0.15);
    border-color: rgba(0, 0, 0, 0.5);
    color: #000000;
}

.social-item.tiktok .social-icon-wrapper {
    background: rgba(0, 0, 0, 0.15);
    color: #000000;
}

.social-item.tiktok:hover .social-icon-wrapper {
    background: rgba(0, 0, 0, 0.25);
    transform: scale(1.1);
}

.social-item.tiktok .social-name {
    color: #000000;
}

/* ============================================
   Contact Form
   ============================================ */

.contact-form {
    margin-top: var(--guru-space-xs);
}

.form-group {
    margin-bottom: var(--guru-space-sm);
}

.form-label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 500;
    color: rgba(var(--color-text-primary), 0.7);
    margin-bottom: var(--guru-space-xs);
}

.form-input,
.form-textarea {
    width: 100%;
    padding: var(--guru-space-sm) var(--guru-space-xs);
    border: 1px solid rgba(var(--input-border-color), 0.2);
    border-radius: var(--guru-radius-sm);
    font-size: 0.875rem;
    color: rgb(var(--color-text-primary));
    background: rgb(var(--background-primary));
    transition: all 0.2s ease;
    box-sizing: border-box;
    font-family: inherit;
}

.form-textarea {
    resize: vertical;
    min-height: 80px;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: rgb(var(--color-primary));
    box-shadow: 0 0 0 2px rgba(var(--color-primary), 0.1);
}

.btn-submit-contact {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--guru-space-xs);
    padding: var(--guru-space-sm) var(--guru-space-md);
    background: linear-gradient(135deg, rgb(var(--color-primary)) 0%, rgba(var(--color-primary), 0.9) 100%);
    color: white;
    border: none;
    border-radius: var(--guru-radius-sm);
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 6px rgba(var(--color-primary), 0.2);
    margin-top: var(--guru-space-sm);
}

.btn-submit-contact:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(var(--color-primary), 0.3);
}

.btn-submit-contact:active {
    transform: translateY(0);
}

.btn-submit-contact .btn-icon {
    font-size: 1rem;
    line-height: 1;
}

/* ============================================
   Notifications
   ============================================ */

.contact-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: var(--guru-space-sm) var(--guru-space-md);
    background: rgba(76, 175, 80, 0.95);
    color: white;
    border-radius: var(--guru-radius-sm);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.3s ease;
    max-width: 280px;
    font-size: 0.8125rem;
}

.contact-notification.show {
    opacity: 1;
    transform: translateX(0);
}

.contact-notification.error {
    background: rgba(244, 67, 54, 0.95);
}

/* ============================================
   Responsive
   ============================================ */

@media (max-width: 480px) {
    .contact-main {
        padding: var(--guru-space-sm);
        padding-bottom: 130px;
    }

    .contact-section {
        padding: var(--guru-space-sm);
    }

    .contact-map-compact {
        height: 180px;
    }

    .social-media-compact {
        justify-content: flex-start;
    }
}
