/* Contact Us Custom Premium Dark Theme Styling */

/* Hero Section */
.aj-contact-hero {
    position: relative;
    padding: 140px 0; /* Slightly taller */
    text-align: center;
    background-size: cover;
    background-position: center;
    border-bottom: 2px solid rgba(212, 175, 55, 0.15);
}

.aj-contact-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(3, 7, 10, 0.45) 0%, rgba(3, 7, 10, 0.65) 100%); /* Subtle, lighter dark overlay */
    z-index: 1;
}

.aj-contact-hero .aj-home-container {
    position: relative;
    z-index: 2;
}

.aj-contact-title {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.aj-contact-subtitle {
    font-size: 20px;
    color: #cbd5e0;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Contact Cards Grid */
.aj-contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.aj-contact-card {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 16px;
    padding: 40px 24px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.aj-contact-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.25);
    background: rgba(255, 255, 255, 0.03);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

.aj-contact-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 24px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    padding: 20px;
    box-sizing: border-box;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.aj-contact-svg-icon {
    width: 100%;
    height: 100%;
    color: #d4af37;
    transition: color 0.4s ease, transform 0.4s ease;
}

.aj-contact-card:hover .aj-contact-icon {
    background: #d4af37;
    border-color: #d4af37;
    transform: translateY(-2px) scale(1.05);
}

.aj-contact-card:hover .aj-contact-svg-icon {
    color: #03070a;
}

.aj-contact-card-title {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
}

.aj-contact-card-detail {
    font-size: 15px;
    color: #a0aec0;
    line-height: 1.6;
}

.aj-contact-link {
    color: #d4af37 !important;
    text-decoration: none !important;
    font-weight: 600;
    display: inline-block;
    margin-top: 8px;
    transition: color 0.3s;
}

.aj-contact-link:hover {
    color: #ffffff !important;
}

/* Custom Guide Grid */
.aj-guide-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: left;
}

.aj-guide-step {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.03);
    padding: 30px;
    border-radius: 12px;
    position: relative;
}

.aj-guide-num {
    font-size: 32px;
    font-weight: 800;
    color: rgba(212, 175, 55, 0.3);
    margin-bottom: 12px;
    display: block;
}

.aj-guide-title {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.aj-guide-desc {
    font-size: 14px;
    color: #a0aec0;
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 1024px) {
    .aj-contact-grid, .aj-guide-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 640px) {
    .aj-contact-grid, .aj-guide-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .aj-contact-title {
        font-size: 40px;
    }
    .aj-contact-subtitle {
        font-size: 18px;
    }
}
