/* style.css - FULL UPDATED CODE - NO CIRCLES, ICONS PERFECTLY CENTERED - NOV 2025 */
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.7;
    color: #2d3748;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
}
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
/* Hero */
.hero { padding: 80px 20px 60px; color: white; position: relative; overflow: hidden; }
.hero::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.15); backdrop-filter: blur(10px);
}
.hero-content { position: relative; display: flex; align-items: center; gap: 30px; flex-wrap: wrap; justify-content: center; }
.profile-img { width: 160px; height: 160px; border-radius: 50%; border: 6px solid rgba(255,255,255,0.3); box-shadow: 0 10px 30px rgba(0,0,0,0.3); object-fit: cover; }
.hero-text h1 { font-size: 2.8rem; margin-bottom: 8px; font-weight: 700; }
.hero-text .title { font-size: 1.35rem; opacity: 0.95; margin-bottom: 6px; }
.hero-text .location { font-size: 1.2rem; opacity: 0.9; margin-bottom: 15px; font-style: italic; }
.hero-text .firm { font-size: 1.1rem; opacity: 0.9; margin-bottom: 20px; max-width: 700px; }
.bilingual { background: rgba(255,255,255,0.2); backdrop-filter: blur(10px); padding: 8px 20px; border-radius: 50px; display: inline-block; font-weight: 500; margin-top: 10px; }
.contact-btn { display: inline-block; background: #10b981; color: white; padding: 14px 32px; border-radius: 50px; text-decoration: none; font-weight: 600; margin-top: 25px; transition: all 0.3s ease; box-shadow: 0 5px 15px rgba(16,185,129,0.4); }
.contact-btn:hover { background: #059669; transform: translateY(-3px); }
.no-underline, .no-underline:hover { text-decoration: none !important; color: inherit; }
/* Contact Bar */
.contact-bar { background: rgba(255,255,255,0.95); backdrop-filter: blur(15px); padding: 60px 20px; text-align: center; border-top: 1px solid rgba(0,0,0,0.1); }
.contact-bar h2 { color: #667eea; margin-bottom: 30px; }
.contact-bar p { font-size: 1.1rem; margin: 12px 0; }
/* Services */
section { padding: 80px 0; }
h2 { text-align: center; font-size: 2.5rem; margin-bottom: 50px; color: #4a5568; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
.service-card { background: white; padding: 35px 25px; border-radius: 20px; text-align: center; box-shadow: 0 15px 35px rgba(0,0,0,0.1); transition: all 0.4s ease; border: 1px solid rgba(255,255,255,0.2); }
.service-card:hover { transform: translateY(-12px); box-shadow: 0 25px 50px rgba(0,0,0,0.18); }
.service-card i { font-size: 3rem; color: #667eea; margin-bottom: 20px; }
.service-card h3 { font-size: 1.4rem; margin-bottom: 15px; color: #2d3748; }
/* Farsi Section */
#farsi {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
    color: white;
    font-family: 'Vazirmatn', sans-serif;
    direction: rtl;
    text-align: center;
    padding: 100px 0;
}
#farsi .container { direction: rtl; }
#farsi h2, #farsi h3 { font-family: 'Vazirmatn', sans-serif; }
.farsi-contact {
    background: rgba(255,255,255,0.12);
    padding: 50px;
    border-radius: 24px;
    max-width: 800px;
    margin: 0 auto;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.2);
}
.farsi-contact h3 { font-size: 1.6rem; margin-bottom: 30px; }

/* NO CIRCLES – ICONS PERFECTLY CENTERED */
.contact-details-english {
    direction: ltr;
    text-align: center;
    margin: 30px 0;
}
.contact-details-english p {
    font-size: 1.25rem;
    margin: 20px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    line-height: 1;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}
.icon {
    font-size: 1.65rem;
    color: #c7d2fe;
    width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* LinkedIn Button */
.linkedin-bottom {
    display: inline-block;
    background: #0a66c2;
    color: white;
    padding: 14px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    margin: 30px auto 0;
    transition: 0.3s;
    font-family: 'Vazirmatn', sans-serif;
    font-size: 1.1rem;
}
.linkedin-bottom:hover {
    background: #0755a0;
    transform: translateY(-3px);
}

/* Farsi Services */
.farsi-services {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.2);
}
.farsi-services p {
    font-size: 1.3rem;
    margin: 15px 0;
    line-height: 1.8;
}
.farsi-services strong { color: #c7d2fe; }

/* Footer */
footer {
    background: #1a202c;
    color: #e2e8f0;
    text-align: center;
    padding: 30px;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content { flex-direction: column; text-align: center; }
    .profile-img { width: 130px; height: 130px; }
    .hero-text h1 { font-size: 2.3rem; }
    h2 { font-size: 2rem; }
    .contact-details-english p {
        flex-direction: column;
        gap: 14px;
    }
    .icon {
        font-size: 1.8rem;
        width: 50px;
    }
}