/* ============================================
   CONTACT PAGE CSS - Contact Page Styles
   ============================================ */

/* Page Background */
body.contact-page {
    background: #0b0b0b;
    overflow-x: hidden;
}

/* ===== Hero Section ===== */
.contact-hero {
    background: #0b0b0b;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 75, 23, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 75, 23, 0.08) 0%, transparent 50%);
    opacity: 1;
}

.contact-hero-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white);
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-hero-title {
    font-size: 72px;
    font-weight: 700;
    line-height: 1.1;
    margin: 0 0 24px;
    color: var(--white);
    font-family: 'Marble', 'Montserrat', sans-serif;
    letter-spacing: -1px;
}

.contact-hero-title span {
    color: var(--orange);
    font-weight: 900;
}

.contact-hero-subtitle {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
    font-weight: 400;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 80px 0 60px;
    }
    
    .contact-hero-title {
        font-size: 48px;
    }
    
    .contact-hero-subtitle {
        font-size: 18px;
    }
}

/* ===== Contact Section ===== */
.contact-section {
    padding: 0 0 100px;
    background: #0b0b0b;
    position: relative;
}

.contact-container {
    width: 100%;
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 40px;
    box-sizing: border-box;
}

/* ===== Contact Card ===== */
.contact-card {
    background: #edf0ef;
    border-radius: 46px;
    padding: 80px 90px;
    display: grid;
    grid-template-columns: 1.05fr 1.1fr;
    gap: 80px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
    box-sizing: border-box;
    position: relative;
    margin-top: -60px;
    z-index: 2;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, rgba(63, 95, 103, 0.3), rgba(63, 95, 103, 0.1));
    border-radius: 46px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s;
}

.contact-card:hover::before {
    opacity: 1;
}

@media (max-width: 1200px) {
    .contact-card {
        grid-template-columns: 1fr;
        padding: 60px 50px;
        gap: 60px;
        margin-top: -40px;
    }
}

@media (max-width: 768px) {
    .contact-card {
        padding: 40px 24px;
        border-radius: 32px;
    }
}

/* ===== Contact Left (Info) ===== */
.contact-left {
    display: grid;
    gap: 24px;
}

.contact-title {
    margin: 0 0 24px;
    font-weight: 700;
    font-size: 76px;
    line-height: 0.98;
    letter-spacing: -1.2px;
    color: #131416;
    font-family: 'Marble', 'Montserrat', sans-serif;
}

.contact-title span {
    color: var(--orange);
    display: inline-block;
    position: relative;
}

.contact-sub {
    margin: 0 0 50px;
    color: #6c6f73;
    font-size: 17px;
    line-height: 1.7;
    font-weight: 400;
}

.contact-info {
    display: grid;
    gap: 24px;
    max-width: 480px;
}

.contact-info-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 22px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.contact-info-item:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.contact-info-label {
    font-size: 13px;
    color: #6c6f73;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-info-value {
    color: var(--orange);
    font-weight: 800;
    font-size: 18px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: all 0.3s ease;
}

.contact-info-value:hover {
    color: #e63900;
    transform: translateX(4px);
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-999);
    background: rgba(255, 75, 23, 0.12);
    display: grid;
    place-items: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-info-item:hover .contact-info-icon {
    background: rgba(255, 75, 23, 0.2);
    transform: scale(1.05);
}

.contact-info-icon i {
    color: var(--orange);
    font-size: 20px;
}

.contact-social {
    display: flex;
    gap: 14px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.contact-social-link {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-999);
    background: rgba(255, 75, 23, 0.12);
    display: grid;
    place-items: center;
    color: var(--orange);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 20px;
    position: relative;
    overflow: hidden;
}

.contact-social-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--orange);
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s;
}

.contact-social-link i {
    position: relative;
    z-index: 1;
    transition: color 0.3s;
}

.contact-social-link:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 28px rgba(255, 75, 23, 0.35);
}

.contact-social-link:hover::before {
    width: 100%;
    height: 100%;
}

.contact-social-link:hover i {
    color: var(--white);
}

/* ===== Contact Right (Form) ===== */
.contact-right {
    display: grid;
    gap: 18px;
    align-content: start;
    padding-top: 6px;
}

.contact-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.contact-form-group {
    display: flex;
    flex-direction: column;
}

.contact-form-group.full-width {
    grid-column: 1 / -1;
}

.contact-form-input,
.contact-form-textarea {
    height: 58px;
    border-radius: var(--radius-999);
    border: 2px solid rgba(0, 0, 0, 0.08);
    background: var(--white);
    padding: 0 24px;
    font-size: 15px;
    color: #111;
    outline: none;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    box-sizing: border-box;
    font-family: inherit;
    font-weight: 400;
}

.contact-form-input:focus,
.contact-form-textarea:focus {
    border-color: var(--orange);
    box-shadow: 0 12px 32px rgba(255, 75, 23, 0.2);
    transform: translateY(-1px);
}

.contact-form-input::placeholder,
.contact-form-textarea::placeholder {
    color: rgba(0, 0, 0, 0.35);
    font-weight: 400;
}

.contact-form-textarea {
    border-radius: 28px;
    height: 138px;
    padding: 18px 22px;
    resize: none;
    min-height: 138px;
}

.contact-form-submit {
    justify-self: start;
    margin-top: 12px;
    height: 68px;
    min-width: 260px;
    border: 0;
    border-radius: var(--radius-999);
    background: var(--orange);
    color: var(--white);
    font-weight: 900;
    font-size: 18px;
    cursor: pointer;
    box-shadow: none;
    transition: all 0.3s ease;
    font-family: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

.contact-form-submit::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.contact-form-submit:hover::before {
    width: 300px;
    height: 300px;
}

.contact-form-submit:hover {
    transform: translateY(-3px);
    box-shadow: none;
}

.contact-form-submit:active {
    transform: translateY(-1px);
    box-shadow: none;
}

.contact-form-submit i {
    position: relative;
    z-index: 1;
}

.contact-form-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* ===== Map Section ===== */
.contact-map-section {
    padding: 80px 0 100px;
    background: #0b0b0b;
}

.contact-map-container {
    width: 100%;
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 40px;
    box-sizing: border-box;
}

.contact-map-card {
    background: #edf0ef;
    border-radius: 46px;
    padding: 60px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-map-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--orange), rgba(255, 75, 23, 0.5));
}

.contact-map-title {
    font-size: 42px;
    font-weight: 700;
    color: #131416;
    margin: 0 0 40px;
    text-align: center;
    font-family: 'Marble', 'Montserrat', sans-serif;
    letter-spacing: -0.5px;
}

.contact-map-iframe {
    width: 100%;
    height: 500px;
    border: none;
    border-radius: var(--radius-22);
    overflow: hidden;
}

/* ===== Success/Error Messages ===== */
.contact-message {
    padding: 16px 20px;
    border-radius: var(--radius-22);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 400;
}

.contact-message.success {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.2);
    color: #166534;
}

.contact-message.error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    color: #dc2626;
}

.contact-message i {
    font-size: 18px;
}

/* ===== Animations ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-card {
    animation: fadeInUp 0.6s ease-out;
}

.contact-info-item {
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
}

.contact-info-item:nth-child(1) { animation-delay: 0.1s; }
.contact-info-item:nth-child(2) { animation-delay: 0.2s; }
.contact-info-item:nth-child(3) { animation-delay: 0.3s; }
.contact-info-item:nth-child(4) { animation-delay: 0.4s; }

.contact-map-card {
    animation: fadeInUp 0.6s ease-out 0.3s both;
}

/* ===== Responsive ===== */
@media (max-width: 1200px) {
    .contact-container {
        padding: 0 24px;
    }
    
    .contact-title {
        font-size: 56px;
    }
    
    .contact-form-submit {
        width: 100%;
        justify-self: stretch;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-hero {
        padding: 60px 0 40px;
    }
    
    .contact-container {
        padding: 0 16px;
    }
    
    .contact-card {
        width: calc(100% - 24px);
        padding: 38px 18px;
        border-radius: 32px;
    }
    
    .contact-form-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-title {
        font-size: 44px;
    }
    
    .contact-map-card {
        padding: 24px;
    }
    
    .contact-map-iframe {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .contact-hero-title {
        font-size: 36px;
    }
    
    .contact-title {
        font-size: 36px;
    }
    
    .contact-info-value {
        font-size: 16px;
    }
}

