/* Process and Testimonials Section Styles */

/* Process Section - Cycling Pixel Background */
.process {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    transition: var(--section-transition);
}

/* Theme-based background colors */
body.dark-mode .process {
    background: #09090b;
}

body:not(.dark-mode) .process {
    background: #f8fafc;
}

.pixel-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    transition: background-color 0.3s ease;
}

/* Pixel canvas background colors */
body.dark-mode .pixel-background {
    background-color: #09090b;
}

body:not(.dark-mode) .pixel-background {
    background-color: #f8fafc;
}

.process .content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    text-align: center;
    padding: 2rem;
    max-height: 100vh;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
}

.process .content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    background: linear-gradient(45deg, #e3e3e3, #a1a1aa, #e3e3e3);
    background-size: 200% 200%;
    animation: shimmer 3s ease-in-out infinite;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes shimmer {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.process .content p {
    font-size: 1.2rem;
    opacity: 0.8;
    max-width: 600px;
    line-height: 1.6;
    margin-bottom: 3rem;
    color: #e3e3e3;
}

/* Process Panels Grid */
.process-panels {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    width: 100%;
    max-width: 900px;
}

.process-panel {
    backdrop-filter: blur(4px);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    direction: ltr;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* Dark mode panels - more transparent */
body.dark-mode .process-panel {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Light mode panels - with shadow and elevation */
body:not(.dark-mode) .process-panel {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1),
    0 2px 8px rgba(0, 0, 0, 0.06);
}

.process-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

body.dark-mode .process-panel::before {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

body:not(.dark-mode) .process-panel::before {
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.2), transparent);
}

.process-panel:hover {
    transform: translateY(-5px);
}

body.dark-mode .process-panel:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

body:not(.dark-mode) .process-panel:hover {
    background: rgba(255, 255, 255, 0.35);
    border-color: rgba(0, 0, 0, 0.12);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15),
    0 4px 16px rgba(0, 0, 0, 0.1),
    0 20px 40px rgba(0, 0, 0, 0.08);
}

.process-panel:hover::before {
    opacity: 1;
}

.process-panel h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.3;
}

body.dark-mode .process-panel h3 {
    color: #e3e3e3;
}

body:not(.dark-mode) .process-panel h3 {
    color: #1f2937;
}

.process-panel p {
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    direction: rtl;
    text-align: center;
}

body.dark-mode .process-panel p {
    color: #a1a1aa;
}

body:not(.dark-mode) .process-panel p {
    color: #4b5563;
}

body.dark-mode .process .content h1 {
    background: linear-gradient(45deg, #e3e3e3, #a1a1aa, #e3e3e3);
    background-size: 200% 200%;
    animation: shimmer 3s ease-in-out infinite;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

body:not(.dark-mode) .process .content h1 {
    background: linear-gradient(45deg, #1f2937, #4b5563, #1f2937);
    background-size: 200% 200%;
    animation: shimmer 3s ease-in-out infinite;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

body.dark-mode .process .content p {
    color: #e3e3e3;
}

body:not(.dark-mode) .process .content p {
    color: #374151;
}

/* Glassmorphism for process items */
.process-item {
    text-align: center;
    direction: rtl;
}

.item-header {
    justify-content: center;
}

body.dark-mode .process-item {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

body:not(.dark-mode) .process-item {
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
}

body.dark-mode .process-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.18);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
}

body:not(.dark-mode) .process-item:hover {
    background: rgba(255, 255, 255, 0.7);
    border-color: rgba(255, 255, 255, 0.85);
    box-shadow: 0 14px 42px rgba(0, 0, 0, 0.12);
}

.process-item h3 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.35;
}

body.dark-mode .process-item h3 {
    color: #e5e7eb;
}

body:not(.dark-mode) .process-item h3 {
    color: #111827;
}

.process-item p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.7;
}

body.dark-mode .process-item p {
    color: #a1a1aa;
}

body:not(.dark-mode) .process-item p {
    color: #374151;
}

/* Contact Us Section */
.contact-us {
    height: 100vh;
    width: 100%;
    position: fixed;
    overflow: hidden;
    transition: background-color 0.3s ease;
    z-index: 1;
    direction: ltr;
}

body.dark-mode .contact-us {
    background-color: black !important;
}

body:not(.dark-mode) .contact-us {
    background-color: white !important;
}

/* Particles canvas */
#particles-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 1;
    display: block;
}

body.dark-mode #particles-bg {
    background-color: black;
}

body:not(.dark-mode) #particles-bg {
    background-color: white;
}

/* Particles background container */
.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Card wrapper for centering */
.contact-card-wrapper {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    padding: 20px;
    pointer-events: none;
    direction: ltr;
}

/* Glass card effect */
.contact-card {
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 20px;
    padding: 40px;
    width: 90%;
    max-width: 1000px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    pointer-events: auto;
    direction: ltr;
}

body.dark-mode .contact-card {
    background: rgba(20, 20, 20, 0.3);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

body:not(.dark-mode) .contact-card {
    background: rgba(255, 255, 255, 0.4);
    color: black;
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.contact-title {
    font-size: 2.5rem;
    margin-bottom: 10px;
    background: linear-gradient(45deg, var(--primary-color), #8a2be2);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.3s ease;
    direction: ltr !important;
    text-align: center !important;
}

.contact-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.8;
    direction: ltr !important;
    text-align: center !important;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
    align-items: start;
    direction: ltr;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
    text-align: right;
    direction: ltr;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    border-radius: 20px;
    transition: all 0.3s ease;
    border: none;
    position: relative;
    direction: ltr;
    flex-direction: row-reverse;
}

body.dark-mode .contact-item {
    background: linear-gradient(145deg, #1a1a1a, #0d0d0d);
    box-shadow: 8px 8px 16px rgba(0, 0, 0, 0.4),
    -8px -8px 16px rgba(255, 255, 255, 0.02);
    color: white;
}

body:not(.dark-mode) .contact-item {
    background: linear-gradient(145deg, #f0f0f0, #ffffff);
    box-shadow: 8px 8px 16px rgba(0, 0, 0, 0.1),
    -8px -8px 16px rgba(255, 255, 255, 0.8);
    color: #333;
}

.contact-item:hover {
    transform: translateY(-2px);
}

body.dark-mode .contact-item:hover {
    box-shadow: 12px 12px 24px rgba(0, 0, 0, 0.5),
    -12px -12px 24px rgba(255, 255, 255, 0.03);
}

body:not(.dark-mode) .contact-item:hover {
    box-shadow: 12px 12px 24px rgba(0, 0, 0, 0.15),
    -12px -12px 24px rgba(255, 255, 255, 0.9);
}

.contact-icon {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    position: relative;
    overflow: hidden;
    direction: ltr;
}

body.dark-mode .contact-icon {
    background: linear-gradient(145deg, #0d0d0d, #1a1a1a);
    box-shadow: inset 6px 6px 12px rgba(0, 0, 0, 0.3),
    inset -6px -6px 12px rgba(255, 255, 255, 0.02);
    color: #4fa8ff;
}

body:not(.dark-mode) .contact-icon {
    background: linear-gradient(145deg, #ffffff, #e6e6e6);
    box-shadow: inset 6px 6px 12px rgba(0, 0, 0, 0.08),
    inset -6px -6px 12px rgba(255, 255, 255, 1);
    color: #2563eb;
}

.contact-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, transparent 30%, rgba(255, 255, 255, 0.1) 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 18px;
}

.contact-icon:hover {
    transform: scale(1.1) translateY(-2px);
}

.contact-icon:hover::before {
    opacity: 1;
}

body.dark-mode .contact-icon:hover {
    box-shadow: inset 8px 8px 16px rgba(0, 0, 0, 0.4),
    inset -8px -8px 16px rgba(255, 255, 255, 0.03),
    0 10px 25px rgba(79, 168, 255, 0.3);
    color: #60a5ff;
}

body:not(.dark-mode) .contact-icon:hover {
    box-shadow: inset 8px 8px 16px rgba(0, 0, 0, 0.12),
    inset -8px -8px 16px rgba(255, 255, 255, 1),
    0 10px 25px rgba(37, 99, 235, 0.2);
    color: #1d4ed8;
}

.contact-details {
    direction: ltr;
    text-align: right;
}

.contact-details h3 {
    font-size: 1.2rem;
    margin: 0 0 8px 0;
    font-weight: 600;
    direction: ltr;
    text-align: right;
}

body.dark-mode .contact-details h3 {
    color: #ffffff;
}

body:not(.dark-mode) .contact-details h3 {
    color: #2d2d2d;
}

.contact-details p {
    margin: 0;
    opacity: 0.8;
    font-size: 1rem;
    font-weight: 400;
    direction: ltr;
    text-align: right;
}

body.dark-mode .contact-details p {
    color: #cccccc;
}

body:not(.dark-mode) .contact-details p {
    color: #666666;
}

.social-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    padding: 30px;
    border-radius: 20px;
    transition: all 0.3s ease;
    border: none;
    position: relative;
    direction: ltr;
}

body.dark-mode .social-section {
    background: linear-gradient(145deg, #1a1a1a, #0d0d0d);
    box-shadow: 8px 8px 16px rgba(0, 0, 0, 0.4),
    -8px -8px 16px rgba(255, 255, 255, 0.02);
    color: white;
}

body:not(.dark-mode) .social-section {
    background: linear-gradient(145deg, #f0f0f0, #ffffff);
    box-shadow: 8px 8px 16px rgba(0, 0, 0, 0.1),
    -8px -8px 16px rgba(255, 255, 255, 0.8);
    color: #333;
}

.social-section:hover {
    transform: translateY(-2px);
}

body.dark-mode .social-section:hover {
    box-shadow: 12px 12px 24px rgba(0, 0, 0, 0.5),
    -12px -12px 24px rgba(255, 255, 255, 0.03);
}

body:not(.dark-mode) .social-section:hover {
    box-shadow: 12px 12px 24px rgba(0, 0, 0, 0.15),
    -12px -12px 24px rgba(255, 255, 255, 0.9);
}

.social-title {
    font-size: 1.3rem;
    margin: 0;
    font-weight: 600;
    direction: ltr;
}

.social-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    direction: ltr;
}

/* Advanced Social Media Buttons with Fancy Hover Effects */
.Btn {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background-color: transparent;
    position: relative;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
}

.svgContainer {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    letter-spacing: 0.8px;
    border-radius: 12px;
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.3);
    z-index: 2;
    position: relative;
}

body.dark-mode .svgContainer {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

body:not(.dark-mode) .svgContainer {
    background-color: rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.3);
}

.BG {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    z-index: 1;
    border-radius: 10px;
    pointer-events: none;
    transition: all 0.3s;
}

.svgIcon {
    transition: all 0.3s;
    width: 28px;
    height: 28px;
    fill: white;
}

body.dark-mode .svgIcon {
    fill: white;
}

body:not(.dark-mode) .svgIcon {
    fill: white;
}

/* WhatsApp Button */
.social-buttons .Btn:nth-child(1) .BG {
    background: #00d757;
    border-radius: 10px;
}

.social-buttons .Btn:nth-child(1):hover .BG {
    transform: rotate(35deg);
    transform-origin: bottom;
}

.social-buttons .Btn:nth-child(1):hover .svgContainer {
    background-color: rgba(156, 156, 156, 0.466);
}

/* Telegram Button */
.social-buttons .Btn:nth-child(2) .svgContainer {
    backdrop-filter: blur(4px);
}

.social-buttons .Btn:nth-child(2) .BG {
    background: #24a1de;
    border-radius: 10px;
}

.social-buttons .Btn:nth-child(2):hover .BG {
    transform: rotate(35deg);
    transform-origin: bottom;
}

.social-buttons .Btn:nth-child(2):hover .svgContainer {
    border: 1px solid rgba(226, 226, 226, 0.466);
    background-color: rgba(204, 204, 204, 0.466);
    backdrop-filter: blur(4px);
}

/* Instagram Button */
.social-buttons .Btn:nth-child(3) .BG {
    background: #f09433;
    background: -moz-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    background: -webkit-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f09433', endColorstr='#bc1888', GradientType=1);
    border-radius: 10px;
}

.social-buttons .Btn:nth-child(3):hover .BG {
    transform: rotate(35deg);
    transform-origin: bottom;
}

.social-buttons .Btn:nth-child(3):hover .svgContainer {
    background-color: rgba(156, 156, 156, 0.466);
}

.contact-animation {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    direction: ltr;
}

/* Hide animation on tablet and mobile */
@media (max-width: 768px) {
    .contact-animation {
        display: none !important;
    }
}

body.dark-mode .contact-animation {
}

body:not(.dark-mode) .contact-animation {
}

.contact-animation:hover {
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
    text-align: right;
    direction: ltr;
}

.copyright-section {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    text-align: center;
    padding: 0;
    margin: 0;
    border: none;
    direction: ltr;
}

.copyright-text {
    font-size: 0.9rem;
    margin: 0;
    opacity: 0.7;
    font-weight: 400;
    direction: ltr;
}

.copyright-text i {
    color: var(--primary-color);
    margin: 0 3px;
}

body.dark-mode .copyright-section {
    border: none;
}

body:not(.dark-mode) .copyright-section {
    border: none;
}

/* Up indicator button */
.up-indicator {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    color: var(--primary-color);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.up-indicator:hover {
    background: var(--primary-color);
    color: white;
    transform: translate(-50%, -5px);
}

body.dark-mode .up-indicator {
    background: rgba(40, 40, 40, 0.6);
    color: white;
}

/* Futuristic Contact Items */
.white,
.border,
.darkBorderBg,
.glow {
    max-height: 70px;
    max-width: 314px;
    height: 100%;
    width: 100%;
    position: absolute;
    overflow: hidden;
    z-index: -1;
    border-radius: 12px;
    filter: blur(3px);
}

.poda-email,
.poda-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    position: relative;
}

.contact-text,
.phone-link,
.email-link {
    width: 280px;
    height: 50px;
    font-size: 16px;
}

.contact-text {
    background-color: #010201;
    border: none;
    width: 301px;
    height: 56px;
    border-radius: 10px;
    color: white;
    padding-inline: 59px;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    text-decoration: none;
    flex-direction: column;
    gap: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.phone-link {
    background-color: #010201;
    border: none;
    width: 301px;
    height: 56px;
    border-radius: 10px;
    color: white;
    padding-inline: 59px;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    text-decoration: none;
    flex-direction: row;
    gap: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.email-link {
    background-color: #010201;
    border: none;
    width: 301px;
    height: 56px;
    border-radius: 10px;
    color: white;
    padding-inline: 59px;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    text-decoration: none;
    flex-direction: row;
    gap: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.phone-link .contact-value,
.email-link .contact-value {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.phone-link:hover,
.email-link:hover {
    transform: translateY(-1px);
    background-color: #1a1a1a;
}

.phone-link:active,
.email-link:active {
    transform: translateY(0);
}

body:not(.dark-mode) .contact-text {
    background-color: #f8f9fa;
    color: #1f2937;
}

body:not(.dark-mode) .phone-link {
    background-color: #f8f9fa;
    color: #1f2937;
}

body:not(.dark-mode) .phone-link:hover {
    background-color: #e9ecef;
}

body:not(.dark-mode) .email-link {
    background-color: #f8f9fa;
    color: #1f2937;
}

body:not(.dark-mode) .email-link:hover {
    background-color: #e9ecef;
}

#main-email:focus-within > #input-mask-email,
#main-phone:focus-within > #input-mask-phone {
    display: none;
}

#input-mask-email,
#input-mask-phone {
    pointer-events: none;
    width: 100px;
    height: 20px;
    position: absolute;
    background: linear-gradient(90deg, transparent, black);
    top: 18px;
    left: 70px;
}

#pink-mask-email,
#pink-mask-phone {
    pointer-events: none;
    width: 30px;
    height: 20px;
    position: absolute;
    background: #cf30aa;
    top: 10px;
    left: 5px;
    filter: blur(20px);
    opacity: 0.8;
    transition: all 2s;
}

#main-email:hover > #pink-mask-email,
#main-phone:hover > #pink-mask-phone {
    opacity: 0;
}

.white {
    max-height: 63px;
    max-width: 307px;
    border-radius: 10px;
    filter: blur(2px);
}

.white::before {
    content: "";
    z-index: -2;
    text-align: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(83deg);
    position: absolute;
    width: 600px;
    height: 600px;
    background-repeat: no-repeat;
    background-position: 0 0;
    filter: brightness(1.4);
    background-image: conic-gradient(
            rgba(0, 0, 0, 0),
            #a099d8,
            rgba(0, 0, 0, 0) 8%,
            rgba(0, 0, 0, 0) 50%,
            #dfa2da,
            rgba(0, 0, 0, 0) 58%
    );
    transition: all 2s;
}

.border {
    max-height: 59px;
    max-width: 303px;
    border-radius: 11px;
    filter: blur(0.5px);
}

.border::before {
    content: "";
    z-index: -2;
    text-align: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(70deg);
    position: absolute;
    width: 600px;
    height: 600px;
    filter: brightness(1.3);
    background-repeat: no-repeat;
    background-position: 0 0;
    background-image: conic-gradient(
            #1c191c,
            #402fb5 5%,
            #1c191c 14%,
            #1c191c 50%,
            #cf30aa 60%,
            #1c191c 64%
    );
    transition: all 2s;
}

.darkBorderBg {
    max-height: 65px;
    max-width: 312px;
}

.darkBorderBg::before {
    content: "";
    z-index: -2;
    text-align: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(82deg);
    position: absolute;
    width: 600px;
    height: 600px;
    background-repeat: no-repeat;
    background-position: 0 0;
    background-image: conic-gradient(
            rgba(0, 0, 0, 0),
            #18116a,
            rgba(0, 0, 0, 0) 10%,
            rgba(0, 0, 0, 0) 50%,
            #6e1b60,
            rgba(0, 0, 0, 0) 60%
    );
    transition: all 2s;
}

.poda-email:hover > .darkBorderBg::before,
.poda-phone:hover > .darkBorderBg::before {
    transform: translate(-50%, -50%) rotate(-98deg);
}

.poda-email:hover > .glow::before,
.poda-phone:hover > .glow::before {
    transform: translate(-50%, -50%) rotate(-120deg);
}

.poda-email:hover > .white::before,
.poda-phone:hover > .white::before {
    transform: translate(-50%, -50%) rotate(-97deg);
}

.poda-email:hover > .border::before,
.poda-phone:hover > .border::before {
    transform: translate(-50%, -50%) rotate(-110deg);
}

.poda-email:focus-within > .darkBorderBg::before,
.poda-phone:focus-within > .darkBorderBg::before {
    transform: translate(-50%, -50%) rotate(442deg);
    transition: all 4s;
}

.poda-email:focus-within > .glow::before,
.poda-phone:focus-within > .glow::before {
    transform: translate(-50%, -50%) rotate(420deg);
    transition: all 4s;
}

.poda-email:focus-within > .white::before,
.poda-phone:focus-within > .white::before {
    transform: translate(-50%, -50%) rotate(443deg);
    transition: all 4s;
}

.poda-email:focus-within > .border::before,
.poda-phone:focus-within > .border::before {
    transform: translate(-50%, -50%) rotate(430deg);
    transition: all 4s;
}

.glow {
    overflow: hidden;
    filter: blur(30px);
    opacity: 0.4;
    max-height: 130px;
    max-width: 354px;
}

.glow:before {
    content: "";
    z-index: -2;
    text-align: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(60deg);
    position: absolute;
    width: 999px;
    height: 999px;
    background-repeat: no-repeat;
    background-position: 0 0;
    background-image: conic-gradient(
            #000,
            #402fb5 5%,
            #000 38%,
            #000 50%,
            #cf30aa 60%,
            #000 87%
    );
    transition: all 2s;
}

@keyframes rotate {
    100% {
        transform: translate(-50%, -50%) rotate(450deg);
    }
}

#email-icon,
#phone-icon {
    position: absolute;
    top: 50%;
    right: 8px;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    max-height: 40px;
    max-width: 38px;
    height: 100%;
    width: 100%;
    isolation: isolate;
    overflow: hidden;
    border-radius: 10px;
    background: linear-gradient(180deg, #161329, black, #1d1b4b);
    border: 1px solid transparent;
}

.filterBorder {
    height: 42px;
    width: 40px;
    position: absolute;
    overflow: hidden;
    top: 50%;
    right: 7px;
    transform: translateY(-50%);
    border-radius: 10px;
}

.filterBorder::before {
    content: "";
    text-align: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(90deg);
    position: absolute;
    width: 600px;
    height: 600px;
    background-repeat: no-repeat;
    background-position: 0 0;
    filter: brightness(1.35);
    background-image: conic-gradient(
            rgba(0, 0, 0, 0),
            #3d3a4f,
            rgba(0, 0, 0, 0) 50%,
            rgba(0, 0, 0, 0) 50%,
            #3d3a4f,
            rgba(0, 0, 0, 0) 100%
    );
    animation: rotate 4s linear infinite;
}

#main-email,
#main-phone {
    position: relative;
}

/* Standalone Social Buttons */
.standalone-social-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    padding: 30px;
    border-radius: 20px;
    transition: all 0.3s ease;
    direction: ltr;
}

.social-btn-standalone {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background-color: transparent;
    position: relative;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s;
}

.social-btn-standalone .svgContainer {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    letter-spacing: 0.8px;
    border-radius: 15px;
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.3);
    z-index: 2;
    position: relative;
}

body.dark-mode .social-btn-standalone .svgContainer {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

body:not(.dark-mode) .social-btn-standalone .svgContainer {
    background-color: rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.3);
}

.social-btn-standalone .BG {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    z-index: 1;
    border-radius: 15px;
    pointer-events: none;
    transition: all 0.3s;
}

.social-btn-standalone .svgIcon {
    transition: all 0.3s;
    width: 36px;
    height: 36px;
    fill: white;
}

body.dark-mode .social-btn-standalone .svgIcon {
    fill: white;
}

body:not(.dark-mode) .social-btn-standalone .svgIcon {
    fill: white;
}

/* WhatsApp Button Standalone */
.standalone-social-buttons a:nth-child(1) .social-btn-standalone .BG {
    background: #00d757;
    border-radius: 15px;
}

.standalone-social-buttons a:nth-child(1) .social-btn-standalone:hover .BG {
    transform: rotate(35deg);
    transform-origin: bottom;
}

.standalone-social-buttons a:nth-child(1) .social-btn-standalone:hover .svgContainer {
    background-color: rgba(156, 156, 156, 0.466);
}

/* Telegram Button Standalone */
.standalone-social-buttons a:nth-child(2) .social-btn-standalone .svgContainer {
    backdrop-filter: blur(4px);
}

.standalone-social-buttons a:nth-child(2) .social-btn-standalone .BG {
    background: #24a1de;
    border-radius: 15px;
}

.standalone-social-buttons a:nth-child(2) .social-btn-standalone:hover .BG {
    transform: rotate(35deg);
    transform-origin: bottom;
}

.standalone-social-buttons a:nth-child(2) .social-btn-standalone:hover .svgContainer {
    border: 1px solid rgba(226, 226, 226, 0.466);
    background-color: rgba(204, 204, 204, 0.466);
    backdrop-filter: blur(4px);
}

/* Responsive styles for futuristic contact items */
@media (max-width: 768px) {
    .poda-email,
    .poda-phone {
        margin-bottom: 20px;
    }

    .contact-text,
    .phone-link,
    .email-link {
        width: 280px;
        height: 50px;
        font-size: 16px;
    }

    .contact-value {
        font-size: 14px;
    }

    .white,
    .border,
    .darkBorderBg,
    .glow {
        max-width: 290px;
        max-height: 60px;
    }

    .white {
        max-width: 285px;
        max-height: 55px;
    }

    .border {
        max-width: 281px;
        max-height: 53px;
    }

    .glow {
        max-width: 320px;
        max-height: 110px;
    }

    .standalone-social-buttons {
        gap: 30px;
    }

    .social-btn-standalone {
        width: 60px;
        height: 60px;
    }

    .social-btn-standalone .svgIcon {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 576px) {
    .poda-email,
    .poda-phone {
        margin-bottom: 15px;
    }

    .contact-text,
    .phone-link,
    .email-link {
        width: 260px;
        height: 45px;
        font-size: 14px;
    }

    .contact-value {
        font-size: 13px;
    }

    .white,
    .border,
    .darkBorderBg,
    .glow {
        max-width: 270px;
        max-height: 55px;
    }

    .white {
        max-width: 265px;
        max-height: 50px;
    }

    .border {
        max-width: 261px;
        max-height: 48px;
    }

    .glow {
        max-width: 300px;
        max-height: 100px;
    }

    #email-icon,
    #phone-icon {
        max-height: 35px;
        max-width: 33px;
    }

    .filterBorder {
        height: 37px;
        width: 35px;
    }

    .standalone-social-buttons {
        gap: 20px;
    }

    .social-btn-standalone {
        width: 50px;
        height: 50px;
    }

    .social-btn-standalone .svgIcon {
        width: 24px;
        height: 24px;
    }
}

/* Mobile Portrait Responsive Styles - Only affect mobile portrait mode */
@media (max-width: 768px) and (orientation: portrait) {
    .process .content {
        padding: 1rem;
        height: 100vh;
        justify-content: center;
    }

    .process .content h1 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .process .content p {
        font-size: 1rem;
        margin-bottom: 2rem;
        max-width: 100%;
    }

    .process-panels {
        grid-template-columns: 1fr;
        gap: 1rem;
        width: 100%;
        max-width: 100%;
    }

    .process-panel {
        padding: 1.2rem;
        border-radius: 12px;
    }

    .process-panel h3 {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
        line-height: 1.2;
    }

    .process-panel p {
        font-size: 0.9rem;
        line-height: 1.4;
        margin: 0;
    }
}

/* Modern Responsive Process Layout (replaces panels) */
.process-flow {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1rem;
}

.process-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
    align-items: start;
}

@media (max-width: 900px) {
    .process-list {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

.process-item {
    position: relative;
    padding: 1rem 1.25rem;
    border-radius: 14px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    background: transparent;
}

/* Subtle hover without creating heavy panels */
.process-item:hover {
    transform: translateY(-3px);
}

.item-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.item-badge {
    display: none !important;
}

/* Title and text colors for readability */
.process-item h3 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.35;
}

body.dark-mode .process-item h3 {
    color: #e5e7eb;
}

body:not(.dark-mode) .process-item h3 {
    color: #111827;
}

.process-item p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.7;
}

body.dark-mode .process-item p {
    color: #a1a1aa;
}

body:not(.dark-mode) .process-item p {
    color: #374151;
}

/* Compact spacing on small screens to keep content within viewport */
@media (max-width: 768px) {
    .process .content h1 {
        margin-bottom: 1.25rem !important;
    }

    .process-item {
        padding: 0.75rem 0.9rem;
    }

    .item-header {
        gap: 0.6rem;
        margin-bottom: 0.35rem;
    }

    .process-item h3 {
        font-size: 1.1rem;
    }

    .process-item p {
        font-size: 0.92rem;
        line-height: 1.6;
    }
}

@media (max-width: 576px) {
    .process-item {
        padding: 0.65rem 0.8rem;
    }

    .process-item h3 {
        font-size: 1rem;
    }

    .process-item p {
        font-size: 0.9rem;
        line-height: 1.55;
    }
}

@media (max-width: 576px) and (orientation: portrait) {
    .process .content {
        padding: 0.8rem;
    }

    .process .content h1 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .process .content p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .process-panels {
        gap: 0.8rem;
    }

    .process-panel {
        padding: 1rem;
    }

    .process-panel h3 {
        font-size: 1.1rem;
        margin-bottom: 0.4rem;
    }

    .process-panel p {
        font-size: 0.85rem;
        line-height: 1.3;
    }
}

/* Compact spacing on small screens to keep content within viewport */
@media (max-width: 768px) {
    .process .content {
        padding: 0.75rem 0.75rem;
        justify-content: flex-start;
        padding-top: 4.5rem;
        overflow-y: auto;
        max-height: 100vh;
    }

    .process .content h1 {
        font-size: 1.5rem !important;
        margin-bottom: 0.5rem !important;
        line-height: 1.2;
    }

    .process-flow {
        padding: 0 0.5rem;
        width: 100%;
    }

    .process-list {
        gap: 0.6rem;
    }

    .process-item {
        padding: 0.65rem 0.75rem;
        border-radius: 10px;
    }

    .item-header {
        gap: 0.4rem;
        margin-bottom: 0.25rem;
    }

    .process-item h3 {
        font-size: 0.95rem;
        line-height: 1.25;
        margin-bottom: 0.15rem;
    }

    .process-item p {
        font-size: 0.8rem;
        line-height: 1.4;
    }
}

@media (max-width: 576px) {
    .process .content {
        padding: 0.5rem 0.5rem;
        padding-top: 4rem;
        padding-bottom: 1rem;
    }

    .process .content h1 {
        font-size: 1.35rem !important;
        margin-bottom: 0.4rem !important;
    }

    .process-flow {
        padding: 0 0.3rem;
    }

    .process-list {
        gap: 0.5rem;
    }

    .process-item {
        padding: 0.55rem 0.65rem;
        border-radius: 8px;
    }

    .item-header {
        margin-bottom: 0.2rem;
    }

    .process-item h3 {
        font-size: 0.9rem;
        line-height: 1.2;
        margin-bottom: 0.1rem;
    }

    .process-item p {
        font-size: 0.75rem;
        line-height: 1.35;
    }
}

/* Extra small screens - maximum compactness */
@media (max-width: 400px) {
    .process .content {
        padding: 0.4rem 0.4rem;
        padding-top: 3.5rem;
        padding-bottom: 1rem;
    }

    .process .content h1 {
        font-size: 1.2rem !important;
        margin-bottom: 0.3rem !important;
    }

    .process-flow {
        padding: 0 0.2rem;
    }

    .process-list {
        gap: 0.4rem;
    }

    .process-item {
        padding: 0.5rem 0.6rem;
    }

    .process-item h3 {
        font-size: 0.85rem;
        line-height: 1.15;
    }

    .process-item p {
        font-size: 0.7rem;
        line-height: 1.3;
    }
}

/* Small height screens (landscape mobile or short screens) */
@media (max-height: 700px) and (max-width: 768px) {
    .process .content {
        padding: 0.4rem 0.5rem;
        padding-top: 3.5rem;
        padding-bottom: 1rem;
    }

    .process .content h1 {
        font-size: 1.25rem !important;
        margin-bottom: 0.4rem !important;
    }

    .process-list {
        gap: 0.4rem;
    }

    .process-item {
        padding: 0.5rem 0.6rem;
    }

    .process-item h3 {
        font-size: 0.85rem;
        line-height: 1.2;
    }

    .process-item p {
        font-size: 0.72rem;
        line-height: 1.3;
    }
}

/* Very small height screens */
@media (max-height: 600px) and (max-width: 768px) {
    .process .content {
        padding: 0.3rem 0.4rem;
        padding-top: 3rem;
        padding-bottom: 0.75rem;
    }

    .process .content h1 {
        font-size: 1.1rem !important;
        margin-bottom: 0.3rem !important;
    }

    .process-list {
        gap: 0.35rem;
    }

    .process-item {
        padding: 0.45rem 0.55rem;
    }

    .process-item h3 {
        font-size: 0.8rem;
        line-height: 1.15;
    }

    .process-item p {
        font-size: 0.68rem;
        line-height: 1.25;
    }
}

@media (max-width: 576px) and (orientation: portrait) {
    .process .content {
        padding: 0.8rem;
    }

    .process .content h1 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .process .content p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .process-panels {
        gap: 0.8rem;
    }

    .process-panel {
        padding: 1rem;
    }

    .process-panel h3 {
        font-size: 1.1rem;
        margin-bottom: 0.4rem;
    }

    .process-panel p {
        font-size: 0.85rem;
        line-height: 1.3;
    }
}
