/* ═══════════════════════════════════════════════════════
   CONTACT PAGE STYLES
   NextCore Theme - İletişim Sayfası Stilleri
═══════════════════════════════════════════════════════ */

/* ── Variables (Tema ile uyumlu) ── */
:root {
    --contact-primary: #2c9440;
    --contact-primary-dark: #1e7a30;
    --contact-primary-darker: #165a23;
    --contact-accent: #82cb30;
    --contact-accent-light: #a3e055;
    --contact-white: #FFFFFF;
    --contact-off-white: #F8FAF6;
    --contact-light-green: #EFF7E8;
    --contact-gray-50: #F9FAFB;
    --contact-gray-100: #F3F4F6;
    --contact-gray-200: #E5E7EB;
    --contact-gray-300: #D1D5DB;
    --contact-gray-400: #9CA3AF;
    --contact-gray-500: #6B7280;
    --contact-gray-600: #4B5563;
    --contact-gray-700: #374151;
    --contact-gray-800: #1F2937;
    --contact-gray-900: #111827;
}

/* ── Contact Container ── */
.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

@media (max-width: 768px) {
    .contact-container {
        padding: 0 20px;
    }
}

/* ═══════════════════════════════════════════════════════
   CONTACT HERO SECTION
═══════════════════════════════════════════════════════ */
.contact-hero {
    position: relative;
    padding: 140px 0 100px;
    background: linear-gradient(135deg, var(--contact-primary-darker) 0%, var(--contact-primary) 50%, var(--contact-primary-dark) 100%);
    overflow: hidden;
    text-align: center;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"),
        radial-gradient(ellipse at 20% 20%, rgba(130, 203, 48, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(130, 203, 48, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.contact-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, transparent 50%);
    pointer-events: none;
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Badge */
.contact-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px 8px 10px;
    background: rgba(130, 203, 48, 0.15);
    border: 1px solid rgba(130, 203, 48, 0.3);
    border-radius: 50px;
    margin-bottom: 24px;
    backdrop-filter: blur(12px);
}

.contact-hero-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--contact-accent);
    position: relative;
    animation: pulse 2s ease infinite;
}

.contact-hero-badge-dot::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--contact-accent);
    opacity: 0.3;
    animation: pulse 2s ease infinite;
}

.contact-hero-badge-text {
    font-size: 13px;
    font-weight: 700;
    color: var(--contact-accent-light);
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.4; }
    50% { transform: scale(1.5); opacity: 0; }
}

/* Hero Title */
.contact-hero-title {
    font-family: var(--font-display, 'DM Serif Display', Georgia, serif);
    font-size: clamp(36px, 5vw, 56px);
    line-height: 1.15;
    color: var(--contact-white);
    margin-bottom: 20px;
}

.contact-hero-title .highlight {
    color: var(--contact-accent);
    position: relative;
}

.contact-hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(130, 203, 48, 0.25);
    border-radius: 4px;
    z-index: -1;
}

/* Hero Description */
.contact-hero-desc {
    font-size: clamp(15px, 2vw, 18px);
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.75);
    max-width: 600px;
    margin: 0 auto;
}

/* Hero Shape Divider */
.contact-hero-shape {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 80px;
    z-index: 3;
}

.contact-hero-shape svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* ═══════════════════════════════════════════════════════
   CONTACT INFO CARDS SECTION
═══════════════════════════════════════════════════════ */
.contact-info-section {
    padding: 80px 0 60px;
    background: var(--contact-white);
    position: relative;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: -120px;
    position: relative;
    z-index: 10;
}

.contact-info-card {
    background: var(--contact-white);
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    border: 1px solid var(--contact-gray-100);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
    overflow: hidden;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--contact-primary), var(--contact-accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.contact-info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(44, 148, 64, 0.12);
    border-color: rgba(44, 148, 64, 0.15);
}

.contact-info-card:hover::before {
    transform: scaleX(1);
}

/* Contact Info Icon */
.contact-info-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--contact-light-green) 0%, rgba(130, 203, 48, 0.15) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.4s ease;
}

.contact-info-card:hover .contact-info-icon {
    background: linear-gradient(135deg, var(--contact-primary) 0%, var(--contact-accent) 100%);
    transform: scale(1.08);
    box-shadow: 0 8px 24px rgba(44, 148, 64, 0.3);
}

.contact-info-icon svg {
    width: 28px;
    height: 28px;
    color: var(--contact-primary);
    transition: color 0.3s ease;
}

.contact-info-card:hover .contact-info-icon svg {
    color: var(--contact-white);
}

/* Contact Info Text */
.contact-info-title {
    font-size: 18px;
    font-weight: 800;
    color: var(--contact-gray-800);
    margin-bottom: 10px;
}

.contact-info-text {
    font-size: 14px;
    line-height: 1.7;
    color: var(--contact-gray-600);
    margin-bottom: 12px;
}

.contact-info-text a {
    color: var(--contact-gray-600);
    transition: color 0.3s ease;
}

.contact-info-text a:hover {
    color: var(--contact-primary);
}

.contact-info-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: var(--contact-primary);
    background: var(--contact-light-green);
    padding: 6px 14px;
    border-radius: 20px;
    letter-spacing: 0.5px;
}

/* Responsive Info Cards */
@media (max-width: 1024px) {
    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
        margin-top: -60px;
    }
}

@media (max-width: 640px) {
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .contact-info-card {
        padding: 24px 20px;
    }
    
    .contact-info-icon {
        width: 56px;
        height: 56px;
    }
    
    .contact-info-icon svg {
        width: 24px;
        height: 24px;
    }
}

/* ═══════════════════════════════════════════════════════
   CONTACT MAIN SECTION (Form & Map)
═══════════════════════════════════════════════════════ */
.contact-main-section {
    padding: 80px 0 100px;
    background: var(--contact-off-white);
    position: relative;
}

.contact-main-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 10% 0%, rgba(44, 148, 64, 0.04) 0%, transparent 50%),
        radial-gradient(ellipse at 90% 100%, rgba(130, 203, 48, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.contact-main-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    position: relative;
    z-index: 2;
}

/* Harita Ayarları sekmesi kapalıyken sadece form, tam genişlik (admin ile uyumlu) */
.contact-main-grid.contact-main-grid--form-only {
    grid-template-columns: 1fr;
}

/* ── Contact Form ── */
.contact-form-wrapper {
    background: var(--contact-white);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--contact-gray-100);
}

.contact-form-header {
    margin-bottom: 32px;
}

.contact-form-title {
    font-family: var(--font-display, 'DM Serif Display', Georgia, serif);
    font-size: 28px;
    color: var(--contact-gray-800);
    margin-bottom: 10px;
}

.contact-form-desc {
    font-size: 15px;
    color: var(--contact-gray-500);
    line-height: 1.6;
}

/* Form Elements */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--contact-gray-700);
}

.form-input,
.form-select,
.form-textarea {
    padding: 14px 18px;
    font-size: 15px;
    font-family: inherit;
    color: var(--contact-gray-800);
    background: var(--contact-gray-50);
    border: 2px solid var(--contact-gray-100);
    border-radius: 12px;
    transition: all 0.3s ease;
    outline: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--contact-gray-400);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    background: var(--contact-white);
    border-color: var(--contact-primary);
    box-shadow: 0 0 0 4px rgba(44, 148, 64, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 18px;
    padding-right: 45px;
}

/* Checkbox */
.form-checkbox {
    margin-top: 8px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 14px;
    line-height: 1.6;
    color: var(--contact-gray-600);
}

.checkbox-label input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.checkbox-custom {
    width: 20px;
    height: 20px;
    min-width: 20px;
    border: 2px solid var(--contact-gray-300);
    border-radius: 5px;
    margin-top: 2px;
    transition: all 0.2s ease;
    position: relative;
}

.checkbox-label input:checked + .checkbox-custom {
    background: var(--contact-primary);
    border-color: var(--contact-primary);
}

.checkbox-label input:checked + .checkbox-custom::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 5px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-text a {
    color: var(--contact-primary);
    font-weight: 600;
    text-decoration: underline;
}

.checkbox-text a:hover {
    color: var(--contact-primary-dark);
}

/* Submit Button */
.form-submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 40px;
    background: linear-gradient(135deg, var(--contact-primary) 0%, var(--contact-primary-dark) 100%);
    color: var(--contact-white);
    font-size: 16px;
    font-weight: 700;
    font-family: inherit;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: 0 4px 20px rgba(44, 148, 64, 0.35);
    margin-top: 8px;
}

.form-submit-btn svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.form-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(44, 148, 64, 0.45);
}

.form-submit-btn:hover svg {
    transform: translate(3px, -3px);
}

.form-submit-btn:active {
    transform: translateY(-1px);
}

/* ── Map & Quick Contact ── */
.contact-map-wrapper {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-map {
    flex: 1;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--contact-gray-100);
    min-height: 350px;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 350px;
    border: none;
}

/* Harita üstü bilgi kartı (Next Content: Harita Ayarları) */
.contact-map-card {
    background: var(--contact-white);
    border-radius: 16px;
    padding: 20px 24px;
    border: 1px solid var(--contact-gray-100);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.contact-map-card-title {
    font-size: 18px;
    font-weight: 800;
    color: var(--contact-gray-800);
    margin: 0 0 8px 0;
}

.contact-map-card-address {
    font-size: 14px;
    line-height: 1.6;
    color: var(--contact-gray-600);
    margin: 0;
    white-space: pre-line;
}

/* Map Placeholder */
.contact-map-placeholder {
    flex: 1;
    background: linear-gradient(135deg, var(--contact-gray-50) 0%, var(--contact-white) 100%);
    border-radius: 24px;
    border: 2px dashed var(--contact-gray-200);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
    text-align: center;
    min-height: 300px;
}

.contact-map-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--contact-light-green);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.contact-map-icon svg {
    width: 36px;
    height: 36px;
    color: var(--contact-primary);
}

.contact-map-placeholder h4 {
    font-size: 20px;
    color: var(--contact-gray-700);
    margin-bottom: 8px;
}

.contact-map-placeholder p {
    font-size: 14px;
    color: var(--contact-gray-500);
}

/* Quick Contact Box */
.quick-contact-box {
    background: linear-gradient(135deg, var(--contact-primary-darker) 0%, var(--contact-primary) 100%);
    border-radius: 24px;
    padding: 32px;
    color: var(--contact-white);
    position: relative;
    overflow: hidden;
}

.quick-contact-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(130, 203, 48, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.quick-contact-title {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 10px;
    position: relative;
}

.quick-contact-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
    margin-bottom: 24px;
    position: relative;
}

.quick-contact-buttons {
    display: flex;
    gap: 12px;
    position: relative;
}

.quick-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
    flex: 1;
    justify-content: center;
}

.quick-btn--phone {
    background: var(--contact-white);
    color: var(--contact-primary);
}

.quick-btn--phone:hover {
    background: var(--contact-accent-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.quick-btn--whatsapp {
    background: #25D366;
    color: white;
}

.quick-btn--whatsapp:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.quick-btn svg {
    width: 18px;
    height: 18px;
}

/* Responsive Main Section */
@media (max-width: 1024px) {
    .contact-main-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-map,
    .contact-map-placeholder {
        min-height: 300px;
    }
}

@media (max-width: 640px) {
    .contact-main-section {
        padding: 60px 0 80px;
    }
    
    .contact-form-wrapper {
        padding: 28px 20px;
        border-radius: 20px;
    }
    
    .contact-form-title {
        font-size: 24px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .quick-contact-box {
        padding: 24px 20px;
        border-radius: 20px;
    }
    
    .quick-contact-buttons {
        flex-direction: column;
    }
    
    .quick-btn {
        width: 100%;
    }
}

/* ═══════════════════════════════════════════════════════
   BRANCHES SECTION (Şubeler)
═══════════════════════════════════════════════════════ */
.contact-branches-section {
    padding: 80px 0;
    background: var(--contact-white);
    border-top: 1px solid var(--contact-gray-100);
}

.contact-branches-label {
    font-size: 14px;
    font-weight: 700;
    color: var(--contact-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 8px 0;
}

.contact-branches-title {
    font-family: var(--font-display, 'DM Serif Display', Georgia, serif);
    font-size: clamp(28px, 4vw, 38px);
    color: var(--contact-gray-800);
    margin: 0 0 40px 0;
}

.contact-branches-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.contact-branch-card {
    background: var(--contact-off-white);
    border-radius: 20px;
    padding: 28px 24px;
    border: 1px solid var(--contact-gray-100);
    transition: all 0.35s ease;
}

.contact-branch-card:hover {
    border-color: rgba(44, 148, 64, 0.2);
    box-shadow: 0 8px 24px rgba(44, 148, 64, 0.08);
}

.contact-branch-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    color: var(--contact-primary);
    background: var(--contact-light-green);
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-branch-name {
    font-size: 20px;
    font-weight: 800;
    color: var(--contact-gray-800);
    margin: 0 0 12px 0;
}

.contact-branch-address,
.contact-branch-phone,
.contact-branch-email {
    font-size: 14px;
    line-height: 1.6;
    color: var(--contact-gray-600);
    margin: 0 0 8px 0;
}

.contact-branch-address {
    white-space: pre-line;
}

.contact-branch-phone a,
.contact-branch-email a {
    color: var(--contact-gray-600);
    transition: color 0.2s ease;
}

.contact-branch-phone a:hover,
.contact-branch-email a:hover {
    color: var(--contact-primary);
}

.contact-branch-map-link {
    display: inline-block;
    margin-top: 16px;
    font-size: 13px;
    font-weight: 700;
    color: var(--contact-primary);
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-branch-map-link:hover {
    color: var(--contact-primary-dark);
}

.contact-branches-empty {
    font-size: 15px;
    color: var(--contact-gray-500);
    text-align: center;
    padding: 24px 20px;
    background: var(--contact-gray-50);
    border-radius: 12px;
    border: 1px dashed var(--contact-gray-200);
    margin: 0;
}

@media (max-width: 640px) {
    .contact-branches-section {
        padding: 60px 0;
    }
    .contact-branches-grid {
        grid-template-columns: 1fr;
    }
}

/* ═══════════════════════════════════════════════════════
   EMERGENCY SECTION (Acil Durum)
═══════════════════════════════════════════════════════ */
.contact-emergency-section {
    padding: 0;
    background: linear-gradient(135deg, var(--contact-primary-darker) 0%, var(--contact-primary) 100%);
    position: relative;
}

.contact-emergency-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 32px 0;
}

.contact-emergency-content {
    flex: 1;
    min-width: 260px;
}

.contact-emergency-title {
    font-size: clamp(22px, 3vw, 28px);
    font-weight: 800;
    color: var(--contact-white);
    margin: 0 0 8px 0;
}

.contact-emergency-desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin: 0;
}

.contact-emergency-cta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}

.contact-emergency-label {
    font-size: 12px;
    font-weight: 700;
    color: var(--contact-accent-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-emergency-phone {
    display: inline-flex;
    align-items: center;
    padding: 14px 28px;
    background: var(--contact-white);
    color: var(--contact-primary);
    font-size: 18px;
    font-weight: 800;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.contact-emergency-phone:hover {
    background: var(--contact-accent-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .contact-emergency-inner {
        flex-direction: column;
        text-align: center;
    }
    .contact-emergency-cta {
        align-items: center;
    }
}

/* ═══════════════════════════════════════════════════════
   SOCIAL MEDIA SECTION
═══════════════════════════════════════════════════════ */
.contact-social-section {
    padding: 80px 0 100px;
    background: var(--contact-white);
    position: relative;
}

.contact-social-wrapper {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.contact-social-title {
    font-family: var(--font-display, 'DM Serif Display', Georgia, serif);
    font-size: 32px;
    color: var(--contact-gray-800);
    margin-bottom: 12px;
}

.contact-social-desc {
    font-size: 16px;
    color: var(--contact-gray-500);
    margin-bottom: 32px;
}

.contact-social-links {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.social-link {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    border: 2px solid var(--contact-gray-100);
}

.social-link svg {
    width: 26px;
    height: 26px;
    transition: transform 0.3s ease;
}

.social-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.social-link:hover svg {
    transform: scale(1.1);
}

.social-link--facebook {
    color: #1877F2;
    background: rgba(24, 119, 242, 0.1);
    border-color: rgba(24, 119, 242, 0.2);
}

.social-link--facebook:hover {
    background: #1877F2;
    color: white;
    border-color: #1877F2;
}

.social-link--instagram {
    color: #E4405F;
    background: rgba(228, 64, 95, 0.1);
    border-color: rgba(228, 64, 95, 0.2);
}

.social-link--instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
    border-color: transparent;
}

.social-link--linkedin {
    color: #0A66C2;
    background: rgba(10, 102, 194, 0.1);
    border-color: rgba(10, 102, 194, 0.2);
}

.social-link--linkedin:hover {
    background: #0A66C2;
    color: white;
    border-color: #0A66C2;
}

.social-link--youtube {
    color: #FF0000;
    background: rgba(255, 0, 0, 0.1);
    border-color: rgba(255, 0, 0, 0.2);
}

.social-link--youtube:hover {
    background: #FF0000;
    color: white;
    border-color: #FF0000;
}

@media (max-width: 640px) {
    .contact-social-section {
        padding: 60px 0 80px;
    }
    
    .contact-social-title {
        font-size: 26px;
    }
    
    .social-link {
        width: 56px;
        height: 56px;
    }
    
    .social-link svg {
        width: 22px;
        height: 22px;
    }
}

/* ═══════════════════════════════════════════════════════
   SUCCESS MESSAGE
═══════════════════════════════════════════════════════ */
.contact-success-message {
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, var(--contact-light-green) 0%, rgba(130, 203, 48, 0.1) 100%);
    border-radius: 20px;
    border: 2px solid rgba(44, 148, 64, 0.15);
}

.success-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--contact-primary) 0%, var(--contact-accent) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    box-shadow: 0 10px 30px rgba(44, 148, 64, 0.3);
    animation: successPop 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.success-icon svg {
    width: 40px;
    height: 40px;
    color: white;
}

.contact-success-message h3 {
    font-size: 24px;
    color: var(--contact-gray-800);
    margin-bottom: 10px;
}

.contact-success-message p {
    font-size: 16px;
    color: var(--contact-gray-600);
}

@keyframes successPop {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* ═══════════════════════════════════════════════════════
   ANIMATIONS
═══════════════════════════════════════════════════════ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-info-card {
    animation: fadeInUp 0.6s ease forwards;
}

.contact-info-card:nth-child(1) { animation-delay: 0.1s; }
.contact-info-card:nth-child(2) { animation-delay: 0.2s; }
.contact-info-card:nth-child(3) { animation-delay: 0.3s; }
.contact-info-card:nth-child(4) { animation-delay: 0.4s; }

/* ═══════════════════════════════════════════════════════
   FORM MESSAGES - WARNING & ERROR
═══════════════════════════════════════════════════════ */

/* Warning Message (Email not sent but saved) */
.contact-success-message--warning {
    background: linear-gradient(135deg, #FFFBEB 0%, rgba(245, 158, 11, 0.1) 100%);
    border: 2px solid rgba(245, 158, 11, 0.2);
}

.contact-success-message--warning .success-icon {
    background: linear-gradient(135deg, #F59E0B 0%, #FBBF24 100%);
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.3);
}

.contact-success-message--warning h3 {
    color: #92400E;
}

.contact-success-message--warning p {
    color: #A16207;
}

/* Error Message */
.contact-error-message {
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, #FEF2F2 0%, rgba(239, 68, 68, 0.1) 100%);
    border-radius: 20px;
    border: 2px solid rgba(239, 68, 68, 0.15);
}

.error-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #EF4444 0%, #F87171 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    box-shadow: 0 10px 30px rgba(239, 68, 68, 0.3);
    animation: errorPop 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.error-icon svg {
    width: 40px;
    height: 40px;
    color: white;
}

.contact-error-message h3 {
    font-size: 24px;
    color: #991B1B;
    margin-bottom: 10px;
}

.contact-error-message p {
    font-size: 16px;
    color: #B91C1C;
}

@keyframes errorPop {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}
