body {
    background: var(--color1201);
}
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}
.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
    animation: float 20s infinite ease-in-out;
}
.shape-1 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    top: -200px;
    right: -200px;
    animation-delay: 0s;
}
.shape-2 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #f093fb, #f5576c);
    bottom: -150px;
    left: -150px;
    animation-delay: 5s;
}
.shape-3 {
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, #4facfe, #00f2fe);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 10s;
}
@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(50px, -50px) scale(1.1);
    }
    66% {
        transform: translate(-50px, 50px) scale(0.9);
    }
}
.main-wrapper {
    position: relative;
    z-index: 1;
    max-width: 1000px;
    padding: 0 20px;
    margin: 60px auto;
}
.header {
    text-align: center;
    padding: 20px 20px 80px;
}
.header-content a {
    color: var(--color1203);
    background-color: color-mix(in srgb, var(--color1203) 10%, transparent);
    text-decoration: none;
    border: 1px solid var(--color1203);
    padding: 2px 16px;
    border-radius: 6px;
}
.header-content a:hover {
    color: var(--color1201);
    background-color: var(--color1203);
}
.logo-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
.logo-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, color-mix(in srgb, var(--color1202) 20%, transparent), var(--color1202));
    animation: pulse 3s infinite;
    display: flex;
    align-items: center;
    justify-content: center;
}
.logo-circle img {
    width: 80%;
    opacity: 0.75;
}
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 10px 40px color-mix(in srgb, var(--color1202) 40%, transparent);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 15px 60px color-mix(in srgb, var(--color1202) 60%, transparent);
    }
}
.main-title {
    font-size: 46px;
    font-family: Sahel-Bold;
    background: linear-gradient(135deg, color-mix(in srgb, var(--color1203) 80%, transparent), color-mix(in srgb, var(--color1202) 80%, transparent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInDown 1s ease;
}
.subtitle {
    font-size: 18px;
    color: color-mix(in srgb, var(--color1203) 80%, transparent);
    font-weight: 300;
    animation: fadeInUp 1s ease;
}
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.content-section {
    margin-bottom: 50px;
}
.section-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    padding-right: 6px;
}
.section-title {
    font-size: 36px;
    font-weight: 700;
    color: color-mix(in srgb, var(--color1203) 95%, transparent);
}
.social-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}
.social-box {
    position: relative;
    text-decoration: none;
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    height: 120px;
    border: 2px solid color-mix(in srgb, var(--color1203) 10%, transparent);
}
.social-bg {
    position: absolute;
    inset: 0;
    background: color-mix(in srgb, var(--color1203) 5%, transparent);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.4s ease;
}
.social-box:hover {
    transform: translateY(-5px);
}
.social-box:hover .social-bg {
    background: color-mix(in srgb, var(--color1203) 10%, transparent);
    border-color: color-mix(in srgb, var(--color1203) 20%, transparent);
}
.social-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px;
    height: 100%;
}
.icon-wrapper {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.icon-wrapper svg {
    width: 32px;
    height: 32px;
    transition: transform 0.3s ease;
}
.social-box:hover .icon-wrapper svg {
    transform: scale(1.1);
}
.text-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 3px;
    color: color-mix(in srgb, var(--color1203) 95%, transparent);
}
.text-content p {
    font-size: 14px;
    color: color-mix(in srgb, var(--color1203) 70%, transparent);
    font-weight: 300;
    margin-bottom: 0;
}
.instagram-box:hover .icon-wrapper {
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}
.instagram-box .icon-wrapper {
    background: rgba(240, 148, 51, 0.2);
    color: #f09433;
}
.telegram-box:hover .icon-wrapper {
    background: linear-gradient(135deg, #0088cc, #00aced);
}
.telegram-box .icon-wrapper {
    background: rgba(0, 136, 204, 0.2);
    color: #0088cc;
}
.whatsapp-box:hover .icon-wrapper {
    background: linear-gradient(135deg, #25D366, #128C7E);
}
.whatsapp-box .icon-wrapper {
    background: rgba(37, 211, 102, 0.2);
    color: #25D366;
}
.linkedin-box:hover .icon-wrapper {
    background: linear-gradient(135deg, #0077B5, #00A0DC);
}
.linkedin-box .icon-wrapper {
    background: rgba(0, 119, 181, 0.2);
    color: #0077B5;
}
.twitter-box:hover .icon-wrapper {
    background: linear-gradient(135deg, #000000, #1c1c1c);
}
.twitter-box .icon-wrapper {
    background: rgba(0, 0, 0, 0.3);
    color: #ffffff;
}
.youtube-box:hover .icon-wrapper {
    background: linear-gradient(135deg, #FF0000, #CC0000);
}
.youtube-box .icon-wrapper {
    background: rgba(255, 0, 0, 0.2);
    color: #ff3e3e;
}
.aparat-box:hover .icon-wrapper {
    background: rgb(255 112 112 / 40%);
}
.aparat-box .icon-wrapper {
    background: rgb(255 112 112 / 20%);
}
.ble-box:hover .icon-wrapper {
    background: rgba(0, 190, 105, 0.534);
}
.ble-box .icon-wrapper {
    background: rgb(71 132 129 / 45%);
}
.icon-wrapper i {
    font-size: 28px;
}
.icon-wrapper img {
    width: 36px;
}
.contact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}
.contact-item {
    animation: fadeInUp 0.6s ease;
}
.contact-glass {
    background: color-mix(in srgb, var(--color1203) 5%, transparent);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid color-mix(in srgb, var(--color1203) 10%, transparent);
    border-radius: 24px;
    padding: 32px;
    transition: all 0.4s ease;
    display: flex;
    gap: 20px;
    height: 180px;
    align-items: center;
}
.contact-glass:hover {
    background: color-mix(in srgb, var(--color1203) 10%, transparent);
    border-color: color-mix(in srgb, var(--color1203) 20%, transparent);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px color-mix(in srgb, var(--color1203) 10%, transparent);
}
.contact-icon-area {
    min-width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.contact-icon-area svg {
    width: 32px;
    height: 32px;
}
.address-icon {
    background: rgba(102, 126, 234, 0.2);
    color: #667eea;
}
.contact-glass:hover .address-icon {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #ffffff;
}
.phone-icon {
    background: rgba(76, 201, 240, 0.2);
    color: #4cc9f0;
}
.contact-glass:hover .phone-icon {
    background: linear-gradient(135deg, #4cc9f0, #4895ef);
    color: #ffffff;
}
.email-icon {
    background: rgba(245, 87, 108, 0.2);
    color: #f5576c;
}
.contact-glass:hover .email-icon {
    background: linear-gradient(135deg, #f5576c, #f093fb);
    color: #ffffff;
}
.contact-text h3 {
    font-size: 22px;
    font-weight: 700;
    color: color-mix(in srgb, var(--color1203) 95%, transparent);
    margin-bottom: 6px;
}
.contact-text p {
    font-size: 16px;
    color: color-mix(in srgb, var(--color1203) 70%, transparent);
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 0;
}
@media (max-width: 768px) {
    .main-title {
        font-size: 36px;
    }
    .subtitle {
        font-size: 16px;
    }
    .section-title {
        font-size: 28px;
    }
    .section-header {
        margin-bottom: 10px;
        padding: 0;
        justify-content: center;
    }
    .social-container {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .contact-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .content-section {
        margin-bottom: 60px;
    }
}
@media (max-width: 480px) {
    .main-wrapper {
        margin: 40px auto;
    }
    .header {
        padding: 10px 16px 60px;
    }
    .logo-circle {
        width: 60px;
        height: 60px;
    }
    .main-title {
        font-size: 28px;
    }
    .social-content {
        padding: 20px;
    }
    .contact-glass {
        padding: 24px;
    }
}