/* Contact Page Specific Styles */

/* Page Header */
.page-header {
    position: relative;
    min-height: 35vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #3d2415 0%, #2a1f1a 100%);
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at top, rgba(255, 138, 91, 0.25) 0%, transparent 70%);
    opacity: 0.6;
}

.header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 20, 16, 0.3);
}

.page-header .container {
    position: relative;
    z-index: 2;
    text-align: center;
}

.page-title {
    font-size: var(--font-size-hero);
    color: var(--text-light);
    margin-bottom: var(--spacing-sm);
    font-weight: 700;
}

.page-subtitle {
    font-size: var(--font-size-h3);
    color: var(--secondary-color);
    font-weight: 400;
}

/* Contact Section */
.contact-section {
    padding: var(--spacing-xl) 0;
    background: var(--background-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--spacing-lg);
    align-items: start;
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--background-card);
    padding: var(--spacing-lg);
    border-radius: 20px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 138, 91, 0.1);
}

.form-header {
    margin-bottom: var(--spacing-md);
}

.form-header h2 {
    font-size: var(--font-size-h2);
    color: var(--primary-color);
    margin-bottom: var(--spacing-xs);
}

.form-header p {
    color: var(--text-secondary);
    font-size: var(--font-size-body);
}

.form-group {
    margin-bottom: var(--spacing-md);
}

.form-group label {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-size: var(--font-size-body);
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
}

.form-group label i {
    color: var(--secondary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: var(--spacing-sm) var(--spacing-md);
    border: 2px solid rgba(255, 138, 91, 0.2);
    border-radius: 8px;
    font-size: var(--font-size-body);
    font-family: var(--font-primary);
    color: var(--text-primary);
    transition: var(--transition-medium);
    background: rgba(255, 255, 255, 0.05);
}

.form-group input[type="tel"] {
    direction: ltr;
    text-align: left;
}

.form-group input[type="tel"]::placeholder {
    direction: rtl;
    text-align: right;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.08);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.btn-submit {
    width: 100%;
    padding: var(--spacing-sm) var(--spacing-md);
    font-size: var(--font-size-body);
    font-weight: 600;
    margin-top: var(--spacing-sm);
}

/* Contact Info */
.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.info-card,
.social-card {
    background: var(--background-card);
    padding: var(--spacing-lg);
    border-radius: 20px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 138, 91, 0.1);
}

.info-card h3,
.social-card h3 {
    font-size: var(--font-size-h3);
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

.info-card > p,
.social-card > p:not(.social-handle) {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
}

.info-item {
    display: flex;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-md);
    border-bottom: 1px solid rgba(255, 138, 91, 0.1);
}

.info-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--text-light);
    font-size: 1.3rem;
    box-shadow: 0 4px 15px rgba(255, 138, 91, 0.3);
}

.info-content h4 {
    font-size: 1rem;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.info-content p,
.info-content a {
    color: var(--text-secondary);
    font-size: var(--font-size-body);
}

.info-content a {
    transition: var(--transition-fast);
}

.info-content a:hover {
    color: var(--primary-color);
}

/* Social Grid */
.social-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
}

.social-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-md);
    background: rgba(255, 138, 91, 0.05);
    border-radius: 12px;
    transition: var(--transition-medium);
    text-decoration: none;
    gap: var(--spacing-xs);
    border: 1px solid rgba(255, 138, 91, 0.1);
}

.social-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(255, 138, 91, 0.2);
    background: rgba(255, 138, 91, 0.1);
    border-color: rgba(255, 138, 91, 0.3);
}

.social-item i {
    filter: brightness(0) invert(1);
    font-size: 2rem;
    transition: var(--transition-medium);
}

.social-item span {
    font-size: var(--font-size-small);
    color: var(--text-primary);
    font-weight: 600;
}

/* Social Media Colors */
.social-item.instagram i {
    background: linear-gradient(135deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.social-item.instagram:hover {
    background: linear-gradient(135deg, rgba(240, 148, 51, 0.1) 0%, rgba(188, 24, 136, 0.1) 100%);
    border-color: rgba(240, 148, 51, 0.3);
}

.social-item.tiktok i {
    color: #000000;
}

.social-item.tiktok:hover {
    background: rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 0, 0, 0.3);
}

.social-item.snapchat i {
    color: #FFFC00;
}

.social-item.snapchat:hover {
    background: rgba(255, 252, 0, 0.1);
    border-color: rgba(255, 252, 0, 0.3);
}

.social-item.twitter i {
    color: #000000;
}

.social-item.twitter:hover {
    background: rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 0, 0, 0.3);
}

.social-item.youtube i {
    color: #FF0000;
}

.social-item.youtube:hover {
    background: rgba(255, 0, 0, 0.1);
    border-color: rgba(255, 0, 0, 0.3);
}

.social-handle {
    text-align: center;
    font-size: var(--font-size-h3);
    color: var(--primary-color);
    font-weight: 600;
    margin: 0;
}

/* Map Section */
.map-section {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, #2a1f1a 0%, #1f1812 100%);
    position: relative;
}

.map-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(255, 138, 91, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.map-placeholder {
    height: 400px;
    background: linear-gradient(135deg, rgba(255, 138, 91, 0.1) 0%, rgba(255, 107, 61, 0.05) 100%);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    border: 2px dashed rgba(255, 138, 91, 0.3);
}

.map-placeholder i {
    font-size: 4rem;
    color: var(--primary-color);
}

.map-placeholder p {
    font-size: var(--font-size-h3);
    color: var(--primary-color);
    font-weight: 600;
}

/* Form Messages */
.form-message {
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: 8px;
    margin-bottom: var(--spacing-md);
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.form-message.success {
    background: rgba(74, 143, 111, 0.1);
    color: var(--success);
    border: 1px solid var(--success);
}

.form-message.error {
    background: rgba(211, 47, 47, 0.1);
    color: #d32f2f;
    border: 1px solid #d32f2f;
}

/* Loading State */
.btn-submit.loading {
    position: relative;
    color: transparent;
    pointer-events: none;
}

.btn-submit.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top-color: var(--text-light);
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

@keyframes spin {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    .contact-form-wrapper,
    .info-card,
    .social-card {
        padding: var(--spacing-md);
    }

    .form-header h2 {
        font-size: var(--font-size-h3);
    }

    .info-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }

    .social-grid {
        grid-template-columns: 1fr;
    }

    .map-placeholder {
        height: 250px;
    }

    .map-placeholder i {
        font-size: 3rem;
    }
}
