/* ===== CONTACT PAGE ===== */
.contact-page {
    padding: 40px;
    box-sizing: border-box;
    margin-left: 260px;
    margin-top: 72px;
    transition: margin-left 0.3s ease;
    position: relative;
    z-index: 1;
}

/* ── Ambient Background Orbs ── */
.contact-page::before,
.contact-page::after {
    content: '';
    position: fixed;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
    z-index: -1;
    animation: contact-orb-float 8s ease-in-out infinite;
}

.contact-page::before {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 195, 155, 0.1) 0%, transparent 70%);
    top: 10%;
    left: 20%;
}

.contact-page::after {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.08) 0%, transparent 70%);
    bottom: 5%;
    right: 5%;
    animation-delay: -4s;
}

body.dark-theme .contact-page::before {
    background: radial-gradient(circle, rgba(0, 212, 170, 0.15) 0%, transparent 70%);
}

body.dark-theme .contact-page::after {
    background: radial-gradient(circle, rgba(88, 101, 242, 0.12) 0%, transparent 70%);
}

@keyframes contact-orb-float {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(30px, -20px) scale(1.05);
    }

    66% {
        transform: translate(-20px, 15px) scale(0.95);
    }
}

@media (min-width: 769px) {
    body.sidebar-collapsed .contact-page {
        margin-left: 64px;
    }
}

@media (max-width: 768px) {
    .contact-page {
        margin-left: 0;
    }
}

/* Page Header */
.contact-page-header {
    text-align: center;
    margin-bottom: 36px;
    padding: 36px 20px 32px;
    border-radius: 20px;
    background: linear-gradient(135deg, #0f172a 0%, #18181b 50%, #0c1a2e 100%);
    position: relative;
    overflow: hidden;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.contact-page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 25% 50%, rgba(16, 185, 129, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse at 75% 30%, rgba(239, 68, 68, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.contact-header-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.25);
    font-size: 20px;
    color: #10b981;
    margin: 0 auto 14px;
    position: relative;
}

.contact-header-icon::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 18px;
    border: 1px solid rgba(16, 185, 129, 0.15);
    animation: contact-icon-ring 2s ease-in-out infinite;
}

@keyframes contact-icon-ring {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.08);
        opacity: 1;
    }
}

.contact-page-header h1 {
    font-size: 30px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.5px;
    margin-bottom: 8px;
    position: relative;
}

.contact-page-header h1 span {
    background: linear-gradient(135deg, #10b981, #34d399);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-page-header p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    max-width: 440px;
    margin: 0 auto;
    line-height: 1.7;
    position: relative;
}

/* Contact Info Cards Row */
.contact-info-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    max-width: 800px;
    margin: 0 auto 40px;
    gap: 20px;
}

.contact-info-card {
    background: #fff;
    border-radius: 20px;
    padding: 28px 24px;
    border: 1px solid #f1f5f9;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
    text-align: center;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.contact-info-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    opacity: 0;
    transition: opacity 0.3s;
}

.contact-info-card:hover::after {
    opacity: 1;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.contact-info-card-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin: 0 auto 16px;
    transition: all 0.3s;
}

.contact-info-card:hover .contact-info-card-icon {
    transform: scale(1.1);
}

.contact-info-card-title {
    font-size: 15px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 8px;
}

.contact-info-card-value {
    font-size: 14px;
    color: #6b7280;
    font-weight: 500;
    line-height: 1.6;
}

.contact-info-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    margin-top: 12px;
    transition: gap 0.2s;
}

.contact-info-card-link:hover {
    gap: 10px;
    text-decoration: none;
}

/* Content Wrapper */
.contact-content-wrapper {
    position: relative;
}

/* Main Section: Form + Details */
.contact-main-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 24px;
    align-items: stretch;
    margin-bottom: 36px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

/* ─── GLASSMORPHISM FORM KARTI ─── */
.contact-form-wrap {
    /* Varsayılan / Light Mode */
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.08),
        0 1px 0 rgba(255, 255, 255, 0.8) inset;
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-radius: 24px;
    padding: 32px;
    height: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.3s, transform 0.3s;
}

.contact-form-wrap:hover {
    transform: translateY(-2px);
    box-shadow:
        0 12px 40px rgba(0, 0, 0, 0.1),
        0 1px 0 rgba(255, 255, 255, 0.85) inset;
}

body.dark-theme .contact-form-wrap {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.04) inset,
        0 32px 64px rgba(0, 0, 0, 0.35),
        0 0 80px rgba(0, 212, 170, 0.04);
}

.contact-form-title {
    font-size: 22px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 8px;
}

.contact-form-subtitle {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 32px;
    line-height: 1.6;
}

.contact-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.contact-form-group {
    margin-bottom: 20px;
}

.contact-form-group.full {
    grid-column: span 2;
}

.contact-form-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
}

.contact-form-label .req {
    color: #ef4444;
}

.contact-form-input,
.contact-form-select,
.contact-form-textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid #e5e7eb;
    border-radius: 12px;
    font-size: 14px;
    font-family: inherit;
    color: #374151;
    background: #fafafa;
    transition: all 0.25s;
    -webkit-appearance: none;
}

.contact-form-input:focus,
.contact-form-select:focus,
.contact-form-textarea:focus {
    outline: none;
    border-color: #10b981;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.contact-form-input::placeholder,
.contact-form-textarea::placeholder {
    color: #9ca3af;
}

.contact-form-select {
    cursor: pointer;
    padding-right: 40px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2'%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: 16px;
}

.contact-form-textarea {
    min-height: 120px;
    resize: vertical;
    line-height: 1.6;
}



/* Rating Stars */
.contact-rating {
    display: flex;
    gap: 6px;
    margin-top: 4px;
}

.contact-star {
    font-size: 24px;
    color: #e5e7eb;
    cursor: pointer;
    transition: all 0.15s;
}

.contact-star.active,
.contact-star:hover {
    color: #f59e0b;
}

/* Privacy checkbox */
.contact-privacy-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 24px;
}

.contact-privacy-check {
    width: 18px;
    height: 18px;
    accent-color: #10b981;
    cursor: pointer;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-privacy-label {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.6;
}

.contact-privacy-label a {
    color: #10b981;
    font-weight: 600;
    text-decoration: none;
}

.contact-privacy-label a:hover {
    text-decoration: underline;
}

/* Submit Button */
.contact-submit-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: #fff;
    border: none;
    border-radius: 14px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s;
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.3);
    font-family: inherit;
}

.contact-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(16, 185, 129, 0.45);
    background: linear-gradient(135deg, #059669, #047857);
}

.contact-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.contact-submit-btn .spinner {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
    display: none;
}

.contact-submit-btn.loading .spinner {
    display: block;
}

.contact-submit-btn.loading .btn-text {
    display: none;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Right side details */
.contact-details-wrap {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-detail-card {
    background: #fff;
    border-radius: 20px;
    padding: 24px;
    border: 1px solid #f1f5f9;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.contact-detail-card-title {
    font-size: 16px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-detail-card-title i {
    color: #10b981;
}



/* Social Links */
.social-links-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.social-link-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.25s;
}

.social-link-btn:hover {
    transform: translateY(-2px);
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.social-link-btn i {
    font-size: 18px;
}

/* Success Message */
.contact-success-msg {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 48px 20px;
    gap: 16px;
}

.contact-success-msg.shown {
    display: flex;
}

.contact-success-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #10b981, #059669);
    color: #fff;
    font-size: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 32px rgba(16, 185, 129, 0.35);
    animation: success-bounce 0.5s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
}

@keyframes success-bounce {
    0% {
        transform: scale(0);
    }

    50% {
        transform: scale(1.15);
    }

    100% {
        transform: scale(1);
    }
}

.contact-success-title {
    font-size: 22px;
    font-weight: 800;
    color: #111827;
}

.contact-success-text {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.7;
    max-width: 340px;
}



/* FAQ Section */
.contact-faq {
    margin-bottom: 48px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.contact-faq-title {
    font-size: 22px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-faq-title i {
    color: #10b981;
}

.faq-item {
    border-radius: 14px;
    border: 1px solid #f1f5f9;
    background: #fff;
    margin-bottom: 12px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.03);
    overflow: hidden;
    transition: box-shadow 0.2s;
}

.faq-item:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.07);
}

.faq-item.open {
    border-color: rgba(16, 185, 129, 0.25);
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.1);
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 20px;
    cursor: pointer;
    user-select: none;
}

.faq-q-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
    transition: all 0.2s;
}

.faq-item.open .faq-q-icon {
    background: #10b981;
    color: #fff;
}

.faq-q-text {
    flex: 1;
    font-size: 15px;
    font-weight: 600;
    color: #111827;
}

.faq-toggle-icon {
    font-size: 14px;
    color: #9ca3af;
    transition: transform 0.3s;
    flex-shrink: 0;
}

.faq-item.open .faq-toggle-icon {
    transform: rotate(180deg);
    color: #10b981;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faq-item.open .faq-answer {
    max-height: 300px;
}

.faq-answer-inner {
    padding: 0 20px 20px 66px;
    font-size: 14px;
    color: #6b7280;
    line-height: 1.8;
}

/* Dark Theme */
body.dark-theme .contact-form-wrap {
    background: #1e1e1e;
    border-color: #2a2a2a;
}

body.dark-theme .contact-form-title {
    color: #f1f5f9;
}

body.dark-theme .contact-form-subtitle {
    color: #9ca3af;
}

body.dark-theme .contact-form-label {
    color: #d1d5db;
}

body.dark-theme .contact-form-input,
body.dark-theme .contact-form-select,
body.dark-theme .contact-form-textarea {
    background: #252525;
    border-color: #333;
    color: #f1f5f9;
}

body.dark-theme .contact-form-input:focus,
body.dark-theme .contact-form-select:focus,
body.dark-theme .contact-form-textarea:focus {
    background: #2a2a2a;
    border-color: #10b981;
}

body.dark-theme .contact-form-input::placeholder,
body.dark-theme .contact-form-textarea::placeholder {
    color: #6b7280;
}

body.dark-theme .contact-privacy-label {
    color: #9ca3af;
}

body.dark-theme .contact-info-card {
    background: #1e1e1e;
    border-color: #2a2a2a;
}

body.dark-theme .contact-info-card-title {
    color: #f1f5f9;
}

body.dark-theme .contact-info-card-value {
    color: #9ca3af;
}

body.dark-theme .contact-detail-card {
    background: #1e1e1e;
    border-color: #2a2a2a;
}

body.dark-theme .contact-detail-card-title {
    color: #f1f5f9;
}

body.dark-theme .faq-item {
    background: #1e1e1e;
    border-color: #2a2a2a;
}

body.dark-theme .faq-item.open {
    border-color: rgba(16, 185, 129, 0.25);
}

body.dark-theme .faq-q-text {
    color: #f1f5f9;
}

body.dark-theme .faq-answer-inner {
    color: #9ca3af;
}

body.dark-theme .contact-faq-title {
    color: #f1f5f9;
}

body.dark-theme .contact-success-title {
    color: #f1f5f9;
}

/* ===================================================
   MODERN CUSTOM SELECT
   =================================================== */
.custom-select-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.custom-select-wrap .contact-form-select.custom-select {
    appearance: none;
    -webkit-appearance: none;
    padding-right: 44px;
    cursor: pointer;
    font-size: 14px;
    letter-spacing: 0.01em;
    border-radius: 12px;
    background-image: none !important;
    transition: border-color 0.25s, box-shadow 0.25s;
}

.custom-select-wrap .contact-form-select.custom-select:focus {
    outline: none;
    border-color: #10b981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.12);
}

.custom-select-arrow {
    position: absolute;
    right: 14px;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 6px;
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    font-size: 11px;
    transition: transform 0.25s, background 0.25s;
}

.custom-select-wrap .contact-form-select.custom-select:focus~.custom-select-arrow {
    background: #10b981;
    color: #fff;
}

body.dark-theme .custom-select-wrap .contact-form-select.custom-select {
    background: #252525;
    border-color: #333;
    color: #f1f5f9;
}

body.dark-theme .custom-select-arrow {
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
}

body.dark-theme .custom-select-wrap .contact-form-select.custom-select:focus~.custom-select-arrow {
    background: #10b981;
    color: #fff;
}

body.dark-theme .custom-select-wrap .contact-form-select.custom-select option {
    background: #252525;
    color: #f1f5f9;
}

/* ===================================================
   SAĞ BİRLEŞİK KART (.contact-right-card)
   =================================================== */
.contact-right-card {
    /* Glassmorphism Light Mode */
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.08),
        0 1px 0 rgba(255, 255, 255, 0.8) inset;
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-sizing: border-box;
    transition: box-shadow 0.3s, transform 0.3s;
}

.contact-right-card:hover {
    transform: translateY(-2px);
    box-shadow:
        0 12px 40px rgba(0, 0, 0, 0.1),
        0 1px 0 rgba(255, 255, 255, 0.85) inset;
}

.crcard-section {
    padding: 22px 24px;
    border-bottom: 1px solid #f1f5f9;
}

.crcard-section:last-child {
    border-bottom: none;
}

.crcard-section-title {
    font-size: 15px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.crcard-section-title i {
    color: #10b981;
}

/* İletişim bilgileri (küçük) */
.crcard-contact-info {
    background: #f8fafc;
}

.crcard-info-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 0;
}

.crcard-info-item+.crcard-info-item {
    border-top: 1px solid #e5e7eb;
}

.crcard-info-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    flex-shrink: 0;
}



.crcard-info-label {
    font-size: 11px;
    font-weight: 600;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.crcard-info-value {
    font-size: 13px;
    font-weight: 700;
    color: #111827;
    text-decoration: none;
    transition: color 0.2s;
}

.crcard-info-value:hover {
    color: #10b981;
    text-decoration: none;
}

/* WhatsApp / Hızlı Yanıt bölümü */
.crcard-whatsapp {
    background: linear-gradient(135deg, #0f172a, #1a2744);
    border-bottom: none !important;
}

.crcard-wa-text {
    color: rgba(255, 255, 255, 0.65);
    font-size: 13px;
    line-height: 1.7;
    margin-bottom: 14px;
}

.crcard-wa-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
}

.crcard-wa-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    text-decoration: none;
    color: #fff;
}

.crcard-wa-btn i {
    font-size: 18px;
}

body.dark-theme .contact-right-card {
    /* Glassmorphism Dark Mode */
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.04) inset,
        0 32px 64px rgba(0, 0, 0, 0.35),
        0 0 80px rgba(0, 212, 170, 0.04);
}

body.dark-theme .crcard-section {
    border-bottom-color: #2a2a2a;
}

body.dark-theme .crcard-section-title {
    color: #f1f5f9;
}

body.dark-theme .crcard-contact-info {
    background: #252525;
}

body.dark-theme .crcard-info-item+.crcard-info-item {
    border-top-color: #333;
}

body.dark-theme .crcard-info-value {
    color: #e5e7eb;
}

/* ===================================================
   İLETİŞİM SAYFASI — MODERN SKELETON (position:fixed)
   =================================================== */
.contact-skeleton-overlay {
    position: fixed;
    top: 72px;
    left: 260px;
    right: 0;
    bottom: 0;
    z-index: 900;
    background: #f0f0f0;
    display: flex;
    flex-direction: column;
    gap: 28px;
    padding: 40px;
    overflow: hidden;
    transition: opacity 0.4s ease;
}

body.dark-theme .contact-skeleton-overlay {
    background: #141414;
}

body.sidebar-collapsed .contact-skeleton-overlay {
    left: 64px;
}

@media (max-width: 768px) {
    .contact-skeleton-overlay {
        left: 0;
        top: 60px;
        padding: 20px 16px;
    }
}

.csk-header {
    height: 150px;
    border-radius: 20px;
    background: linear-gradient(90deg, #e2e8f0 25%, #d1d9e6 50%, #e2e8f0 75%);
    background-size: 400% 100%;
    animation: premiumSkeleton 1.5s ease-in-out infinite;
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    flex-shrink: 0;
}

body.dark-theme .csk-header {
    background: linear-gradient(90deg, #1e293b 25%, #2d3f55 50%, #1e293b 75%);
    background-size: 400% 100%;
}

.csk-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 24px;
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    flex: 1;
}

.csk-form-col,
.csk-right-col {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.csk-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.csk-box {
    border-radius: 10px;
    background: linear-gradient(90deg, #e2e8f0 25%, #d1d9e6 50%, #e2e8f0 75%);
    background-size: 400% 100%;
    animation: premiumSkeleton 1.5s ease-in-out infinite;
    height: 20px;
}

body.dark-theme .csk-box {
    background: linear-gradient(90deg, #1e293b 25%, #2d3f55 50%, #1e293b 75%);
    background-size: 400% 100%;
}

@media (max-width: 1100px) {
    .contact-main-grid {
        grid-template-columns: 1fr;
    }

    .csk-grid {
        grid-template-columns: 1fr;
    }
}



@media (max-width: 768px) {
    .contact-page {
        padding: 20px 16px;
    }

    .contact-page-header {
        padding: 48px 20px 40px;
    }

    .contact-page-header h1 {
        font-size: 30px;
    }

    .contact-info-row {
        grid-template-columns: 1fr;
    }

    .contact-main-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-wrap {
        padding: 24px;
    }

    .contact-form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-group.full {
        grid-column: auto;
    }

    .contact-skeleton-overlay {
        padding: 90px 16px 20px;
    }

    .csk-grid {
        grid-template-columns: 1fr;
    }
}


body.dark-theme .contact-form-input,
body.dark-theme .contact-form-select,
body.dark-theme .contact-form-textarea {
    background: #252525;
    border-color: #333;
    color: #f1f5f9;
}

body.dark-theme .contact-form-input:focus,
body.dark-theme .contact-form-select:focus,
body.dark-theme .contact-form-textarea:focus {
    background: #2a2a2a;
    border-color: #10b981;
}

body.dark-theme .contact-form-input::placeholder,
body.dark-theme .contact-form-textarea::placeholder {
    color: #6b7280;
}

body.dark-theme .contact-file-upload {
    background: #252525;
    border-color: #333;
}

body.dark-theme .contact-file-upload:hover {
    border-color: #10b981;
    background: rgba(16, 185, 129, 0.05);
}

body.dark-theme .contact-privacy-label {
    color: #9ca3af;
}

body.dark-theme .contact-info-card {
    background: #1e1e1e;
    border-color: #2a2a2a;
}

body.dark-theme .contact-info-card-title {
    color: #f1f5f9;
}

body.dark-theme .contact-info-card-value {
    color: #9ca3af;
}

body.dark-theme .contact-detail-card {
    background: #1e1e1e;
    border-color: #2a2a2a;
}

body.dark-theme .contact-detail-card-title {
    color: #f1f5f9;
}

body.dark-theme .working-hours-item {
    background: #252525;
}

body.dark-theme .working-hours-item.today {
    background: rgba(16, 185, 129, 0.08);
}

body.dark-theme .working-hours-day {
    color: #d1d5db;
}

body.dark-theme .faq-item {
    background: #1e1e1e;
    border-color: #2a2a2a;
}

body.dark-theme .faq-item.open {
    border-color: rgba(16, 185, 129, 0.25);
}

body.dark-theme .faq-q-text {
    color: #f1f5f9;
}

body.dark-theme .faq-answer-inner {
    color: #9ca3af;
}

body.dark-theme .contact-faq-title {
    color: #f1f5f9;
}

body.dark-theme .contact-success-title {
    color: #f1f5f9;
}

/* Responsive */
@media (max-width: 1100px) {
    .contact-main-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contact-page {
        padding: 20px 16px;
    }

    .contact-page-header {
        padding: 48px 20px 40px;
    }

    .contact-page-header h1 {
        font-size: 30px;
    }

    .contact-info-row {
        grid-template-columns: 1fr;
    }

    .contact-main-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-wrap {
        padding: 24px;
    }

    .contact-form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-group.full {
        grid-column: auto;
    }
}