@font-face {
    font-family: 'IranianSans';
    src: url('/main/fonts/IranianSans.ttf') format('truetype');
}

.gh-contact-body {
    font-family: 'IranianSans', sans-serif;
    background: linear-gradient(145deg, #212121 0%, #424242 100%);
    color: #FFFFFF;
    margin: 0;
    padding: 0;
    min-height: 100vh;
}

.gh-contact-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.gh-contact-section {
    background: #2A2A2A;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
    padding: 30px;
    position: relative;
    overflow: hidden;
}

.gh-contact-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(27, 94, 32, 0.15) 0%, transparent 60%);
    animation: glow 10s infinite ease-in-out;
    z-index: 0;
}

@keyframes glow {
    0% { transform: scale(1); opacity: 0.2; }
    50% { transform: scale(1.1); opacity: 0.35; }
    100% { transform: scale(1); opacity: 0.2; }
}

.gh-contact-title {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: #FFFFFF;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

.gh-contact-content {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
    color: #BBBBBB;
    position: relative;
    z-index: 1;
}

.gh-contact-empty {
    font-size: 16px;
    text-align: center;
    color: #BBBBBB;
    position: relative;
    z-index: 1;
}

.gh-contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    z-index: 1;
}

.gh-contact-subtitle {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #FFFFFF;
    display:flex;
    align-items: center;
    gap: 8px;
}

.gh-contact-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.gh-contact-item {
    font-size: 14px;
    line-height: 1.6;
    color: #BBBBBB;
    display: flex;
    align-items: center;
    gap: 10px;
}

.gh-contact-item i {
    font-size: 18px;
    color: #1B5E20;
}

.gh-contact-link {
    color: #1B5E20;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.gh-contact-link:hover {
    color: #FFFFFF;
}

@media (max-width: 767px) {
    .gh-contact-main {
        padding: 20px 15px;
    }
    .gh-contact-section {
        padding: 20px;
    }
    .gh-contact-title {
        font-size: 24px;
    }
    .gh-contact-content, .gh-contact-empty {
        font-size: 14px;
    }
    .gh-contact-subtitle {
        font-size: 18px;
    }
    .gh-contact-item {
        font-size: 13px;
    }
    .gh-contact-item i {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .gh-contact-title {
        font-size: 20px;
    }
    .gh-contact-content, .gh-contact-empty {
        font-size: 13px;
    }
    .gh-contact-subtitle {
        font-size: 16px;
    }
    .gh-contact-item {
        font-size: 12px;
    }
    .gh-contact-item i {
        font-size: 14px;
    }
}