* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    line-height: 1.8;
    color: #333;
    background: #ffffff;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Hero Section */
.hero-section {
    text-align: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 40px;
    margin-bottom: 60px;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="white" opacity="0.1"/><circle cx="80" cy="80" r="1" fill="white" opacity="0.1"/><circle cx="40" cy="60" r="1" fill="white" opacity="0.1"/><circle cx="60" cy="30" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

.hero-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 auto 50px;
    line-height: 1.8;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

/* Social Media */
.social-media {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}
.social-media a img{
    max-width: 38px;
}
.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 20px;
    color: white;
    text-decoration: none;
    font-size: 24px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-link:hover {
    transform: translateY(-8px) scale(1.15);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

/* Content Section */
.content-section {
    background: white;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

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

/* Contact Info */
.contact-info h3 {
    font-size: 1.6rem;
    color: #2d3748;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.contact-info h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 2px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(102, 126, 234, 0.05);
    border-radius: 15px;
    border-right: 4px solid #667eea;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(102, 126, 234, 0.1);
    transform: translateX(-5px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.2);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    margin-left: 20px;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.contact-details h4 {
    font-size: 1.1rem;
    color: #2d3748;
    margin-bottom: 5px;
    font-weight: 600;
}

.contact-details p {
    color: #718096;
    font-size: 0.95rem;
}

.contact-text {
    background: rgba(102, 126, 234, 0.05);
    padding: 25px;
    border-radius: 15px;
    margin-top: 30px;
    border-right: 4px solid #667eea;
}

.contact-text p {
    color: #4a5568;
    line-height: 1.8;
}

/* Form Section */
.form-section h3 {
    font-size: 1.6rem;
    color: #2d3748;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.form-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 2px;
}

.gravity-form-placeholder {
    background: rgba(102, 126, 234, 0.05);
    border: 2px dashed #667eea;
    border-radius: 15px;
    /*padding: 60px 30px;*/
    text-align: center;
    color: #667eea;
    font-size: 1.1rem;
    line-height: 1.6;
    transition: all 0.3s ease;
    overflow: hidden;
}

.gravity-form-placeholder:hover {
    background: rgba(102, 126, 234, 0.1);
    border-color: #764ba2;
    color: #764ba2;
}

.shortcode {
    background: rgba(255, 255, 255, 0.8);
    padding: 15px 20px;
    border-radius: 10px;
    font-size: 0.9rem;
    color: #2d3748;
    /*margin-top: 20px;*/
    border: 1px solid rgba(102, 126, 234, 0.3);
}
.gform-theme--foundation .gform_fields{
    gap: 1rem !important;
}
.shortcode .gfield{
    /*display: flex;*/
    /*gap: 1rem;*/
    /*align-items: center;*/
    font-family: IRANSansX, serif;
}
/*.shortcode .gfield label{*/
/*    margin-bottom: 0 !important;*/
/*}*/
.shortcode .gfield .ginput_container input,
.shortcode .gfield .ginput_container textarea{
    background: #f7f8fe;
    border: 1px solid #667eea;
}
/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 15px;
    }

    .hero-section {
        padding: 60px 25px;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .content-section {
        padding: 30px 25px;
    }

    .content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .social-media {
        gap: 15px;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .contact-icon {
        margin-left: 0;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.9rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .social-link {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}