﻿:root {
    --bg-dark: #0a0a0a;
    --bg-section: #1a1a1a;
    --text-light: #ffffff;
    --text-secondary: #b0b0b0;
    --primary-start: #8a4fe9;
    --primary-end: #7731E9;
    --card-bg: #2a2a2a;
    --footer-bg: #0b1120;
    --purple-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Noto Kufi Arabic", sans-serif;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    direction: ltr;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.cta-btn {
    border: 2px solid var(--primary-start);
    color: var(--primary-start);
    padding: .3rem 2rem;
    border-radius: calc(infinity * 1px);
    transition: color .2s, background-color .2s;
    font-weight: 600;
    font-size: 1.2rem;
}

.cta-btn:hover {
    background-color: var(--primary-start);
    color: black;
}

.hero {
    text-align: center;
    padding: 4rem 1rem;
    min-height: 100vh;
    background: url("hero-bg.svg") no-repeat;
    background-size: cover;

    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    justify-content: center;
    height: 100%;
    margin: auto;
}

.hero h1 {
    font-size: 2.5rem;
}

@media (min-width: 768px) {
    .hero h1 {
        font-size: 3rem;
        word-spacing: -0.8rem;
    }
}

@media (min-width: 1024px) {
    .hero h1 {
        font-size: 4rem;
    }
}

.gradient-text {
    background: linear-gradient(90deg, var(--primary-start), var(--primary-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.5rem;
    font-weight: 500;
    color: #cad7e0;
    word-spacing: -0.1rem;
}

section {
    padding: 3rem 0;
}

.section-title {
    font-size: 1.8rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    text-align: center;
    position: relative;
    font-weight: 400;
}

.section-title::after {
    content: '';
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-start), var(--primary-end));
    display: block;
    margin: 8px auto 0;
}

/* مشاريعنا */
.projects {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.project-card {
    background: var(--card-bg);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
    transition: transform .3s;
}

.project-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

.project-card:hover {
    transform: translateY(-5px);
}

.project-card .content {
    padding: 1rem;
}

.project-card h4 {
    margin-bottom: .5rem;
    color: var(--text-light);
}

.project-card p {
    color: #b0bbc4;
}

/* تواصل معنا */
.contact-form {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
    max-width: 800px;
    margin: auto;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: .6rem;
    margin-bottom: 1rem;
    border: 1px solid #2e3951;
    border-radius: 4px;
    background: #1f2a44;
    color: var(--text-light);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #7a8b9f;
}

.contact-form button {
    width: 100%;
    background: linear-gradient(90deg, var(--primary-start), var(--primary-end));
    color: white;
    padding: .8rem 1.2rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: opacity .3s;
}

.contact-form button:hover {
    opacity: .8;
}

/* الفوتر */
footer {
    background: var(--footer-bg);
    color: var(--text-light);
    padding: 2rem 0;
    text-align: center;
}

footer a {
    color: var(--primary-start);
    margin: 0 .5rem;
}

input {
    direction: rtl;
}

.contact-card {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 12px 0;
    font-size: 1rem;
}

.contact-item a {
    color: var(--primary-start);
    text-decoration: none;
    margin-right: 4px;
    direction: ltr;
}

.contact-item a:hover {
    text-decoration: underline;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-list a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-list a:hover {
    color: var(--primary-start);
}

.arrow {
    font-size: 0.8rem;
    margin-left: 0.5rem;
}

.header-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.contact-btn {
    background: transparent;
    border: 2px solid var(--text-light);
    color: var(--text-light);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.contact-btn:hover {
    background: var(--text-light);
    color: var(--bg-dark);
}

.lang-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--text-light);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: radial-gradient(80.14% 86.67% at 50% 13.33%, #0F0F0F 77.06%, #7731E9 94.86%);
    border-radius: 0px;


}




.hero-content {
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--text-light) 0%, var(--primary-start) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    background: transparent;
    background: var(--primary-start);
    color: var(--text-light);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover {
    background: var(--primary-end);
    color: var(--text-light);
}

/* Companies Section */
.top-shadow {
    background: linear-gradient(0deg, #0F0F0F 56.41%, #7731E9 88.92%);
    backdrop-filter: blur(35px);
}

.companies-section {
    padding: 6rem 0;
}

.companies-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--text-light);
}

.companies-logos {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    align-items: center;
}

.company-logo {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem 2rem;
    border-radius: 35px;
    backdrop-filter: blur(10px);
}

.company-logo img {
    height: 60px;
    width: auto;
}

/* About Section */

.about-section {
    padding: 6rem 0;
    background: var(--bg-dark);


}

.about-content {
    position: relative;
    height: 690px;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url("hands.jpg");
    border: 1px solid #FCFCFC;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-blend-mode: overlay;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 20px;
}

.about-badge-title {
    position: absolute;
    top: -2px;
    left: -2px;
    width: 36%;
    min-width: 300px;
    height: 200px;
    background: var(--bg-dark);
    border-right: 1px solid #FCFCFC;
    border-bottom: 1px solid #FCFCFC;
    border-left: 1px solid var(--bg-dark);
    border-top: 1px solid var(--bg-dark);
    border-top-left-radius: 20px;
    border-top-right-radius: 0;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.about-title-img {
    width: 70%;
    object-fit: cover;
}

.about-badge {
    font-size: 1.5rem;
    color: var(--text-light);
    transform: rotate(-90deg);
}


.about-text-content {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 50%;
    min-width: 300px;
    height: 300px;
    background: var(--bg-dark);
    border-right: 1px solid var(--bg-dark);
    border-bottom: 1px solid var(--bg-dark);
    border-left: 1px solid #FCFCFC;
    border-top: 1px solid #FCFCFC;
    border-top-left-radius: 40px;
    border-top-right-radius: 0;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 20px;
    padding: 20px;
    text-overflow: ellipsis;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-overflow: ellipsis;
}

.about-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.about-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.5;
    color: var(--text-secondary);
    text-overflow: ellipsis;
    max-height: 100%;
}

@media (max-width:480px) {
    .about-content {
        background: none;
        border: none;
    }
}


@media (max-width: 768px) {
    .about-title-img {
        width: 100%;
    }

    .about-badge {
        display: none;
    }

    .about-subtitle {
        font-size: 2rem;
        line-height: 1.2;
    }

    .about-description {
        display: none;
    }
}

@media (max-width: 992px) {
    .about-text-content {
        width: 60%;
    }

    .about-subtitle {
        font-size: 1.5rem;
        line-height: 1.2;
    }

    .about-description {
        font-size: 1rem;
        line-height: 1.2;
    }
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Services Section */
.services-section {
    padding: 6rem 0;
    background: var(--bg-section);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 4rem;
    color: var(--text-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--purple-gradient);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.service-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-btn {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--text-light);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.service-btn:hover {
    background: var(--text-light);
    color: var(--bg-dark);
}

/* Projects Section */
.projects-section {
    padding: 6rem 0;
    background: var(--bg-dark);
}

.project-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--text-light);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--primary-start);
    border-color: var(--primary-start);
    color: var(--text-light);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.project-card {
    background: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s, opacity 0.3s ease-in-out;
}

.project-card:hover {
    transform: translateY(-10px);
}

.project-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 2rem;
    color: var(--text-light);
    z-index: 1;
}

.project-overlay h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.project-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.project-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

/* Contact Section */
.contact-section {
    padding: 6rem 0;
    background: var(--purple-gradient);
}

.contact-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.contact-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.contact-form {
    display: flex;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 50px;
    backdrop-filter: blur(10px);
}

.contact-input {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--text-light);
    font-size: 1rem;
    padding: 0.75rem 1rem;
    outline: none;
}

.contact-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.contact-submit {
    background: var(--text-light);
    color: var(--bg-dark);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.contact-submit:hover {
    background: var(--primary-start);
}


/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .companies-logos {
        gap: 2rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }

    .contact-form {
        flex-direction: column;
        padding: 1.5rem;
        border-radius: 20px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .companies-title {
        font-size: 2rem;
    }

    .about-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .contact-title {
        font-size: 2rem;
    }
}

/* New Footer Styles */
.new-footer {
    margin-top: 0;
    padding: 0;
    background: transparent;
}

/* Curved Header Section */
.footer-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 48px 90px;
    gap: 24px;
    width: 80%;
    margin: 0 auto -120px auto;
    position: relative;
    background: linear-gradient(135deg, #4a5bff 0%, #2d4ef0 25%, #6a4ef0 50%, #9b59b6 75%, #e74c3c 100%);
    border-radius: 250px;
    z-index: 1;
    overflow: hidden;
}

@media (max-width: 768px) {
    .footer-header {
        border-radius: 75px;
    }
}

.footer-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(74, 91, 255, 0.9) 0%, rgba(45, 78, 240, 0.9) 25%, rgba(106, 78, 240, 0.9) 50%, rgba(155, 89, 182, 0.9) 75%, rgba(231, 76, 60, 0.9) 100%);
    backdrop-filter: blur(20px);
}

.footer-header-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.footer-header-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: white;
    margin-bottom: 30px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.footer-header-form {
    max-width: 600px;
    margin: 0 auto;
}

.footer-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 60px;
    padding: 8px 8px 8px 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.footer-header-input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    font-size: 1rem;
    color: #333;
    padding: 16px 0;
    font-family: 'Inter', sans-serif;
}

.footer-header-input::placeholder {
    color: #666;
}

.footer-header-submit {
    background: #333;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: white;
}

.footer-header-submit:hover {
    background: #555;
    transform: scale(1.05);
}

/* Main Footer Section */
.footer-main {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 25%, #0f3460 50%, #1a1a2e 75%, #242938 100%);
    padding: 180px 0 0;
    position: relative;
    overflow: hidden;
}

.footer-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(119, 49, 233, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 212, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 90%, rgba(119, 49, 233, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

.footer-section {
    position: relative;
}

.footer-section h4 {
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 8px;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-start), var(--primary-end));
    border-radius: 2px;
}

.footer-section p {
    color: #c0c0c0;
    font-size: 0.95rem;
    line-height: 1.7;
    transition: color 0.3s ease;
}

.footer-section a {
    color: #b8b8b8;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.footer-section a:hover {
    color: var(--primary-start);
    transform: translateX(3px);
}

/* Footer Brand Section */
.footer-brand {
    background: rgba(255, 255, 255, 0.02);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    height: fit-content;
}

.footer-brand .footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;

}

.footer-brand .footer-logo img {
    width: 180px;
    border-radius: 8px;
    padding: 8px;
    margin: 0 auto;
}

.footer-brand .footer-logo span {
    color: white;
    font-size: 1.4rem;
    font-weight: 700;
    background: linear-gradient(135deg, white, #e0e0e0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Footer Navigation */
.footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav ul li {
    margin-bottom: 16px;
}

.footer-nav ul li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(255, 255, 255, 0.02);
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.footer-nav ul li a:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(119, 49, 233, 0.3);
    transform: translateX(5px);
}

.footer-nav ul li:last-child a {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-nav .arrow {
    font-size: 0.9rem;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.footer-nav ul li a:hover .arrow {
    opacity: 1;
    transform: translateX(3px);
}

/* Contact Information */
.footer-contact .contact-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.footer-contact .contact-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(119, 49, 233, 0.2);
    transform: translateY(-2px);
}

.footer-contact .contact-item svg {
    color: var(--primary-start);
    margin-top: 2px;
    flex-shrink: 0;
    width: 45px;
    height: 40px;
    padding: 8px;
    background: rgba(119, 49, 233, 0.1);
    border-radius: 8px;
}

.footer-contact .contact-item div p {
    margin: 0;
    line-height: 1.5;
    font-size: 0.95rem;
}

/* Store Icons */
.store-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    gap: 12px;
    margin-top: 24px;
    width: 100%;
}

.store-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(119, 49, 233, 0.1), rgba(0, 212, 255, 0.1));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.store-icon:hover {
    background: linear-gradient(135deg, rgba(119, 49, 233, 0.2), rgba(0, 212, 255, 0.2));
    border-color: rgba(119, 49, 233, 0.3);
    box-shadow: 0 8px 25px rgba(119, 49, 233, 0.2);
}

/* Footer Bottom */
.new-footer .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 20px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 20px 20px 0 0;
    position: relative;
    z-index: 3;
}

.new-footer .footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-start), transparent);
}

.new-footer .footer-bottom p {
    color: #d0d0d0;
    font-size: 0.95rem;
    margin: 0;
    font-weight: 500;
}

.new-footer .social-links {
    display: flex;
    gap: 12px;
}

.new-footer .social-links a {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
}

.new-footer .social-links a:hover {
    background: linear-gradient(135deg, var(--primary-start), var(--primary-end));
    transform: translateY(-3px);
    border-color: rgba(119, 49, 233, 0.3);
    box-shadow: 0 8px 25px rgba(119, 49, 233, 0.3);
}

.new-footer .social-links a svg {
    color: #c0c0c0;
    width: 20px;
    height: 20px;
    transition: all 0.3s ease;
}

.new-footer .social-links a:hover svg {
    color: white;
    transform: scale(1.1);
}

/* Responsive Design for New Footer */
@media (max-width: 1024px) {
    .new-footer .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .footer-header-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .new-footer .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-header {
        padding: 40px 20px;
    }

    .footer-header-title {
        font-size: 1.3rem;
    }

    .footer-header-form {
        width: 90%;
    }

    .new-footer .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .footer-header-title {
        font-size: 1.2rem;
    }

    .footer-input-wrapper {
        padding: 4px;
    }

    .footer-header-input {
        padding: 0 0;
        font-size: 0.8rem;
    }

    .footer-header-submit {
        width: 30px;
        height: 30px;
    }
}