/* ============================================================
   KRADS - PREMIUM CONTACT PAGE
   ============================================================ */
.contact-main {
    padding-bottom: 120px;
    background: var(--k-dark-bg);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

/* --- Premium Form Container --- */
.contact-form-container {
    background: var(--k-dark-surface);
    padding: 50px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

/* Grid texture inside form */
.contact-form-container::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 222, 89, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 222, 89, 0.02) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

.contact-form-container h2 {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 10px;
    position: relative;
}

.contact-form-container h2 span {
    color: var(--k-accent);
}

.form-tagline {
    color: var(--k-text-muted);
    font-size: 0.9rem;
    margin-bottom: 40px;
    position: relative;
}

/* --- Form Inputs --- */
.contact-form .input-group {
    margin-bottom: 20px;
    position: relative;
}

.contact-form label {
    display: block;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--k-text-muted);
    margin-bottom: 8px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--k-text-light);
    border-radius: 12px;
    font-family: inherit;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder { 
    color: rgba(161, 161, 170, 0.4); 
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: rgba(255, 222, 89, 0.5);
    background: rgba(255, 222, 89, 0.03);
    box-shadow: 0 0 0 4px rgba(255, 222, 89, 0.05);
}

.contact-form textarea { resize: none; }

.submit-btn {
    width: 100%;
    padding: 18px;
    background: var(--k-accent);
    color: var(--k-dark-bg);
    border: none;
    border-radius: 12px;
    font-weight: 800;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-top: 10px;
    position: relative;
    overflow: hidden;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 0; height: 0;
    background: rgba(0,0,0,0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.submit-btn:hover::before { width: 300px; height: 300px; }

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 222, 89, 0.3);
}

/* --- Contact Info Side Panel --- */
.contact-info-list {
    position: sticky;
    top: 100px;
}

.contact-info-list h2 {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 10px;
}

.contact-info-tagline {
    color: var(--k-text-muted);
    font-size: 0.95rem;
    margin-bottom: 40px;
    line-height: 1.7;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background: var(--k-dark-surface);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    transition: all 0.4s ease;
}

.info-item:hover {
    border-color: rgba(255, 222, 89, 0.2);
    transform: translateX(5px);
    background: rgba(255, 222, 89, 0.02);
}

.info-item i {
    width: 48px;
    height: 48px;
    background: rgba(255, 222, 89, 0.1);
    color: var(--k-accent);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.info-item:hover i {
    background: var(--k-accent);
    color: var(--k-dark-bg);
}

.info-item h3 {
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--k-text-muted);
    margin-bottom: 5px;
}

.info-item p {
    color: var(--k-text-light);
    font-size: 0.95rem;
    font-weight: 500;
}

/* --- Dark Map Filter --- */
.map-section {
    padding: 0;
    border-radius: 20px;
    overflow: hidden;
    margin-top: 80px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.map-section iframe {
    filter: invert(90%) hue-rotate(180deg) brightness(90%) contrast(85%);
    display: block;
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .contact-form-container { padding: 35px 25px; }
    .contact-info-list { position: static; }
}

/* ============================================================
   AESTHETIC CONTACT SECTION LAYOUT (SECTION COMPONENT)
   ============================================================ */
.aesthetic-contact-section {
    padding: 110px 0;
    background: var(--k-dark-bg);
    position: relative;
    overflow: hidden;
}

/* Background Ambient Glow & Grid */
.aesthetic-contact-section::before {
    content: '';
    position: absolute;
    top: 50%;
    right: -10%;
    transform: translateY(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 222, 89, 0.07) 0%, rgba(255, 222, 89, 0.01) 50%, transparent 70%);
    filter: blur(60px);
    pointer-events: none;
}

.aesthetic-contact-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 32px 32px;
    pointer-events: none;
    opacity: 0.6;
}

.contact-section-grid {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 65px;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Left Content Column */
.contact-section-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-section-info .section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 222, 89, 0.08);
    border: 1px solid rgba(255, 222, 89, 0.25);
    color: var(--k-accent);
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    width: fit-content;
    margin-bottom: 20px;
}

.contact-section-info .section-tag::before {
    display: none;
}

.contact-section-info .section-title {
    font-size: 2.8rem;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.section-desc-left {
    color: var(--k-text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 35px;
}

/* Highlights List */
.contact-highlights-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 35px;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 16px 20px;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.highlight-item:hover {
    background: rgba(255, 222, 89, 0.03);
    border-color: rgba(255, 222, 89, 0.2);
    transform: translateX(6px);
}

.highlight-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    background: rgba(255, 222, 89, 0.12);
    color: var(--k-accent);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: inset 0 0 10px rgba(255, 222, 89, 0.1);
}

.highlight-text h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--k-text-light);
    margin-bottom: 3px;
}

.highlight-text p {
    font-size: 0.85rem;
    color: var(--k-text-muted);
    margin: 0;
    line-height: 1.4;
}

/* Quick Chips */
.contact-quick-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.quick-chip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--k-dark-surface);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 10px 18px;
    border-radius: 30px;
    color: var(--k-text-light);
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.quick-chip i {
    color: var(--k-accent);
}

.quick-chip:hover {
    border-color: var(--k-accent);
    color: var(--k-accent);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Right Card Container */
.contact-form-card {
    background: rgba(24, 24, 27, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 28px;
    padding: 45px 40px;
    position: relative;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.contact-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 40px;
    right: 40px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--k-accent), transparent);
    border-radius: 3px;
}

.form-card-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #4ade80;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    padding: 5px 12px;
    border-radius: 20px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.pulse-dot {
    width: 7px;
    height: 7px;
    background: #4ade80;
    border-radius: 50%;
    box-shadow: 0 0 8px #4ade80;
    animation: pulseGlow 1.8s infinite;
}

@keyframes pulseGlow {
    0% { opacity: 0.4; transform: scale(0.9); }
    50% { opacity: 1; transform: scale(1.3); }
    100% { opacity: 0.4; transform: scale(0.9); }
}

.form-card-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--k-text-light);
    margin-bottom: 6px;
    letter-spacing: -0.3px;
}

.form-card-sub {
    color: var(--k-text-muted);
    font-size: 0.9rem;
    margin-bottom: 30px;
}

/* Form Controls */
.aesthetic-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.input-field-group {
    display: flex;
    flex-direction: column;
}

.input-field-group label {
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--k-text-muted);
    margin-bottom: 8px;
}

.input-field-group label .req {
    color: var(--k-accent);
}

.input-field-group label .optional {
    font-size: 0.7rem;
    font-weight: 400;
    text-transform: none;
    letter-spacing: normal;
    color: rgba(161, 161, 170, 0.6);
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper .input-icon {
    position: absolute;
    left: 18px;
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.95rem;
    transition: color 0.3s ease;
    pointer-events: none;
}

.input-wrapper textarea ~ .input-icon,
.input-wrapper .input-icon.top-align {
    top: 18px;
}

.input-wrapper input,
.input-wrapper textarea {
    width: 100%;
    padding: 15px 18px 15px 48px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    color: var(--k-text-light);
    font-family: inherit;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.input-wrapper input::placeholder,
.input-wrapper textarea::placeholder {
    color: rgba(161, 161, 170, 0.35);
    font-size: 0.9rem;
}

.input-wrapper input:focus,
.input-wrapper textarea:focus {
    outline: none;
    border-color: var(--k-accent);
    background: rgba(255, 222, 89, 0.03);
    box-shadow: 0 0 0 4px rgba(255, 222, 89, 0.08), 0 10px 25px rgba(0, 0, 0, 0.3);
}

.input-wrapper input:focus ~ .input-icon,
.input-wrapper textarea:focus ~ .input-icon,
.input-wrapper:focus-within .input-icon {
    color: var(--k-accent);
}

/* Submit Button */
.aesthetic-submit-btn {
    width: 100%;
    padding: 16px 24px;
    background: var(--k-accent);
    color: var(--k-dark-bg);
    border: none;
    border-radius: 14px;
    font-weight: 800;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 10px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(255, 222, 89, 0.25);
}

.aesthetic-submit-btn .btn-icon {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.aesthetic-submit-btn:hover {
    background: #ffe476;
    transform: translateY(-3px);
    box-shadow: 0 16px 35px rgba(255, 222, 89, 0.4);
}

.aesthetic-submit-btn:hover .btn-icon {
    transform: translateX(5px);
}

.aesthetic-submit-btn:active {
    transform: translateY(-1px);
}

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

/* Feedback Msg */
.form-feedback-msg {
    display: none;
    padding: 14px 18px;
    border-radius: 12px;
    font-size: 0.88rem;
    font-weight: 600;
    margin-top: 10px;
    text-align: center;
}

.form-feedback-msg.success {
    background: rgba(34, 197, 94, 0.12);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #4ade80;
}

.form-feedback-msg.error {
    background: rgba(239, 68, 68, 0.12);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #f87171;
}

/* Responsive */
@media (max-width: 992px) {
    .contact-section-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .contact-section-info .section-title {
        font-size: 2.2rem;
    }
    .contact-form-card {
        padding: 35px 25px;
    }
}

@media (max-width: 576px) {
    .aesthetic-contact-section {
        padding: 70px 0;
    }
    .contact-section-info .section-title {
        font-size: 1.8rem;
    }
    .contact-form-card {
        padding: 28px 18px;
        border-radius: 20px;
    }
    .contact-quick-chips {
        flex-direction: column;
    }
}
