/* Arabic Fonts */
@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Titillium+Web:400,600');


body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Droid Arabic Kufi', sans-serif;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
html {
    scroll-behavior: smooth;
}
/* Loading screen styles */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #f8f8f8;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* HTML: <div class="loader"></div> */
.loader {
    width: 50px;
    --b: 8px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: #c13446;
    -webkit-mask:
      repeating-conic-gradient(#0000 0deg,#000 1deg 70deg,#0000 71deg 90deg),
      radial-gradient(farthest-side,#0000 calc(100% - var(--b) - 1px),#000 calc(100% - var(--b)));
    -webkit-mask-composite: destination-in;
            mask-composite: intersect;
    animation: l5 1s infinite;
}

@keyframes l5 {to{transform: rotate(.5turn)}}
/* Hide loading screen when JavaScript is loaded */
.loaded .loading-screen {
    display: none;
}
  .loader-hidden {
    display: none;
} 

/* Hide loading screen when JavaScript is loaded */
.loaded .loading-screen {
  display: none;
}
.loader-hidden {
    display: none;
}

:root {
    --primary: #c13446;
    --secondary: #76b849;
}

.main-container {
    height: 100vh;
    background: url('img/应用场景4.jpg') no-repeat center center;
    background-size: cover;
    position: relative;
}

.main-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.692);
    z-index: 1;
}

/* Navbar Styles */
.navbar {
    position: relative;
    z-index: 99;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.left-nav {
    display: flex;
    gap: 1rem;
}

.contact-btn, .lang-btn {
    font-family: 'Droid Arabic Kufi', sans-serif;
    font-weight: bold;
    padding: 0.5rem 1.5rem;
    border-radius: 10px;
    border: 1px solid #fff;
    background: transparent;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.lang-btn {
    background: #fff;
    color: #333;
}

.contact-btn:hover, .lang-btn:hover {
    background: #eee;
    color: #333;
}

.logo img {
    width: 250px;
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 30px;
    height: 2px;
    background: #fff;
    transition: all 0.3s ease;
}

.hamburger span:nth-child(2) {
    width: 20px;
}

.hamburger:hover span:nth-child(2) {
    width: 30px;
}

/* Menu Styles */
.nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 30%;
    height: 100vh;
    background: linear-gradient(135deg,
     #76b849 20%,
     #c13446 20%
    );
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.5s cubic-bezier(0.65, 0, 0.35, 1);
    backdrop-filter: blur(10px);
}

.nav-menu.active {
    right: 0;
}

.nav-menu .left-nav {
    position: absolute;
    right: 80px;
    top: 30px;
}

.menu-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 30px;
    height: 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease;
}

.menu-close:hover {
    transform: rotate(90deg);
}

.menu-close::before,
.menu-close::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: #fff;
    transition: 0.3s ease;
}

.menu-close::before {
    transform: rotate(45deg);
}

.menu-close::after {
    transform: rotate(-45deg);
}

.menu-items {
    text-align: center;
    padding: 0;
    margin: 0;
    list-style: none;
}

.menu-items li {
    opacity: 0;
    transform: translateY(20px);
    transition: 0.3s ease;
}

.nav-menu.active .menu-items li {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger the animation for each menu item */
.nav-menu.active .menu-items li:nth-child(1) { transition-delay: 0.2s; }
.nav-menu.active .menu-items li:nth-child(2) { transition-delay: 0.3s; }
.nav-menu.active .menu-items li:nth-child(3) { transition-delay: 0.4s; }
.nav-menu.active .menu-items li:nth-child(4) { transition-delay: 0.5s; }

.menu-items li:not(:last-child) {
    margin-bottom: 2rem;
}

.menu-items a {
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 700;
    position: relative;
    padding: 0.5rem 1rem;
    transition: 0.3s ease;
}

.menu-items a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: 0.3s ease;
}

.menu-items a:hover {
    color: #fff;
}

.menu-items a:hover::before {
    width: 100%;
}

.menu-items a.active {
    color: #fff;
}

.menu-items a.active::before {
    width: 100%;
}

/* Additional decorative elements */
.menu-background {
    z-index: 999;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, transparent 20%, rgba(0,0,0,0.8) 70%);
    opacity: 0.1;
    pointer-events: none;
}

@media (max-width: 768px) {
    .logo img {
        width: 150px;
    }
    .navbar .contact-btn {
        display: none;
    }
    .nav-menu {
        width: 100%;
        height: 80vh;
    }
    .menu-items a {
        font-size: 1rem;
    }
    
    .menu-items li:not(:last-child) {
        margin-bottom: 1.5rem;
    }
    .contact-btn, .lang-btn {
        padding: 0.3rem 1rem;
    }
}



/* Hero Styles */
.hero {
    z-index: 9;
    display: flex;
    flex-direction: column;
    height: calc(100vh - 80px);
    position: relative;
}

.hero-content {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 0 5rem;
}

.hero-text {
    max-width: 600px;
    color: #fff;
}

.hero-text h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #fff;
    border-bottom: 4px solid var(--primary);
}

.hero-text h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.hero-text p {
    font-size: 1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.read-more {
    flex-direction: row;
    display: inline-block;
    text-decoration: none;
    font-size: 0.8rem;
    gap: 10px;
    padding: 0.5rem 1rem;
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
    font-family: 'Droid Arabic Kufi', sans-serif;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.read-more svg {
    width: 20px;
    margin-left: 5px;
}


.read-more:hover {
    background: #ffffff21;
    backdrop-filter: blur(10px);
}

/* Bottom Cards */
.bottom-cards {
    position: relative;
    width: 50%;
    background: #fff;
    padding: 2rem;
    display: flex;
    gap: 2rem;
    margin-right: auto;
    border-radius: 0 50px 0 0;
}

/* Adding the triangle decoration */
.bottom-cards::before {
    content: '';
    position: absolute;
    right: -100px; /* Half of the triangle extends outside */
    top: 50%;
    transform: translateY(-14%);
    width: 230px; /* Total width of the triangle */
    height: 230px;
    background: #fff;
    clip-path: polygon(0 0, 0 100%, 100% 50%);
    z-index: -1;
}

.bottom-cards a {
    text-decoration: none;
}
.bottom-cards i {
    font-size: 16px;
}

/* Rest of the bottom-cards styles remain the same */
.card {
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0 20px;
    padding-bottom: 40px;
    border: 1px solid #ddd;
    border-radius: 15px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.card:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.card:hover h3 {
    color: var(--primary);
}

.card:hover .arrow {
    color: var(--secondary);
}

.card h3 {
    font-size: 18px;
    color: var(--primary);
    margin-bottom: 0;
}

.card p {
    font-size: 16px;
    color: #666;
    margin-bottom: 0;
}

.card .arrow {
    position: absolute;
    bottom: 2px;
    color: #333;
    font-size: 1rem;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.card:hover .arrow {
    transform: translateX(-5px);
}

/* Adjust responsive design for the triangle */
@media (max-width: 768px) {
    .main-container {
        height: 80vh;
        overflow: hidden;
    }
    .hero {
        height: calc(80vh - 80px);
    }
    .hero-content {
        padding: 0 1.5rem;
    }
    .hero-text h1 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .hero-text h2 {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .read-more {    
        padding: 8px 15px;
        font-size: 12px;
    }

    .read-more svg {
        width: 15px;
        margin: 0 5px;
    }

    .hero-text p {
        margin-bottom: 2rem;
        font-size: 14px;
    }
    .bottom-cards {
        width: 80%;
        padding: 0.4rem 1rem;
        gap: 0.5rem;
    }
    .card {
        margin-bottom: 10px;
    }
    .card h3 {
        font-size: 14px;
    }
    
    .card p {
        display: none;
    }
    
    .bottom-cards::before {
        right: -25px; /* Adjust triangle position for mobile */
        width: 50px; /* Smaller triangle for mobile */
        height: 50px;
    }
    .bottom-cards i {
        font-size: 12px;
    }
}

@media (max-width: 350px){
    .bottom-cards {
        width: 100%;
    }
}



.about-section {
    padding: 100px 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-grid {
    display: grid;
    gap: 50px;
}

.about-content {
    position: relative;
    padding: 30px;
    background: rgba(260,260,260,0.9);
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.about-content h2 {
    position: relative;
    font-size: 2.3rem;
    color: var(--primary);
    margin-bottom: 30px;
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.about-content .logo-image {
    position: absolute;
    width: 190px;
    margin: 0 10px;
}

.about-content h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    width: 200px;
    height: 4px;
    background: #333;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
}

.about-content .read-more {
    color: var(--primary);
    border: 1px solid var(--primary);
    margin-bottom: 30px;
}

.about-content .read-more:hover {
    color: #fff;
    background: var(--primary);
}


.gallery-2 {
    margin: 40px 0;
    position: relative;
    z-index: 1;
    direction: rtl;
}

.gallery2Swiper {
    width: 100%;
    padding: 20px 0;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

/* Custom pagination style */
.gallery2Swiper .swiper-pagination {
    position: relative;
    margin-top: 20px;
}

.gallery2Swiper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: var(--primary);
    opacity: 0.5;
}

.gallery2Swiper .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--primary);
}

@media screen and (max-width: 768px) {
    .about-content .logo-image {
        width: 120px;
    }
    .gallery-item img {
        height: 180px;
    }
}

.vision-mission {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 50px;
}

.vision, .mission {
    padding: 30px;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    color: #333;
    background: url(img/cardbg.jpg);
    background-size: cover;
}

.vision i, .mission i {
    font-size: 32px;
    color: var(--primary);
}

.vision:hover, .mission:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.vision h3, .mission h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.vision h3::after, .mission h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60px;
    height: 3px;
    background: #fff;
}

.vision p, .mission p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
    color: #333;
}

/* Decorative Elements */
.about-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, #fff 10%, var(--secondary) 80%);
    opacity: 0.5;
    z-index: 0;
}
.about-grid::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: -50%;
    width: 100%;
    height: 100%;
    background: linear-gradient(to left, #fff 10%, var(--primary) 80%);
    opacity: 0.5;
    z-index: 0;
}

@media (max-width: 768px) {
    .about-container {
        padding: 0 5px;
    }

    .about-content {
        position: relative;
        padding: 15px;
    }
    
    .about-content h2 {
        font-size: 1.5rem !important;
    }
    .about-content h2::after {
        width: 100px;
    }
    
    .about-content p {
        font-size: 0.9rem;
    }
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .vision-mission {
        grid-template-columns: 1fr;
    }
    .vision, .mission {
        padding: 20px 10px;
    }
    
    .about-content h2 {
        font-size: 2rem;
    }
    .vision i, .mission i {
        font-size: 28px;
    }
    
    .vision h3, .mission h3 {
        font-size: 1.5rem;
    }
    
    .vision p, .mission p {
        font-size: 1rem;
    }
}


.services {
    padding: 100px 0;
    position: relative;
    background: linear-gradient(to bottom, #eee 0%, var(--primary) 50%);
}

.services-container {
    z-index: 99;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.services-container h2 {
    position: relative;
    color: #fff;
    font-size: 2.5rem;
}

.services-container h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    width: 80px;
    height: 4px;
    background: #fff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    min-height: 350px;
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1));
    pointer-events: none;
}

.service-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
}

.service-card i {
    font-size: 1.5rem;
    background: #fff;
    padding: 10px;
    border-radius: 50px;
    color: var(--secondary);
    transition: ease-in 0.2s;
}

.service-card h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 15px;
}

.service-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: #fff;
    transition: width 0.3s ease;
}

.service-card:hover h3::after {
    width: 100px;
}

.service-card:hover i {
    padding: 12px;
}

.service-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .services {
        background: linear-gradient(to bottom, #eee 0%, var(--primary) 10%);
        padding: 50px 20px;
    }
    
    .services-container {
        padding: 0 15px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card {
        padding: 20px;
        min-height: 250px;
    }
    
    .service-card h3 {
        font-size: 1.2rem;
    }
    
    .service-card p {
        font-size: 0.9rem;
    }
}



.why-us {
    padding: 80px 6%;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.why-us::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: linear-gradient(135deg, rgba(14, 28, 63, 0.05) 0%, rgba(14, 28, 63, 0.02) 100%);
    transform: rotate(-15deg);
    pointer-events: none;
}

.why-us-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.why-us-title {
    font-size: 2.5rem;
    color: #444;
    margin-bottom: 50px;
    position: relative;
    display: inline-block;
}

.why-us-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    right: 0;
    width: 60%;
    height: 4px;
    background: linear-gradient(90deg, transparent, #c13446);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(24, 90, 140, 0.1);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 4px;
    height: 0;
    background: #c13446cc;
    transition: height 0.3s ease;
}

.feature-card:hover::before {
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}


.feature-title {
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 15px;
    font-weight: bold;
}

.feature-text {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

@media screen and (max-width: 768px) {
    .why-us {
        padding: 40px 4%;
    }

    .why-us-title {
        font-size: 1.8rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-card {
        padding: 20px;
    }

    .feature-title {
        font-size: 1.1rem;
    }

    .feature-text {
        font-size: 0.9rem;
    }
}

.gallery-section {
    padding: 80px 0;
    background: url('img/cardbg2.jpg');
    background-size: cover;
    position: relative;
    overflow: hidden;
}

.gallery-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.gallery-title {
    text-align: right;
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 50px;
    position: relative;
}

.gallery-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    right: 0;
    width: 100px;
    height: 4px;
    background: var(--primary);
}

.gallery-title i {
    font-size: 28px;
}

/* Swiper Styles */
.gallery-container .swiper {
    width: 100%;
    height: 500px;
    border-radius: 20px;
    padding: 20px 0;
}

.gallery-section .swiper-slide {
    position: relative;
    height: 450px;
    border-radius: 15px;
    overflow: hidden;
}

.gallery-container .swiper-slide::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
    transition: all 0.3s ease;
}

.gallery-container .swiper-slide:hover::before {
    background: rgba(0, 0, 0, 0.521);
}

.gallery-section .swiper-slide a {
    text-decoration: none;
    color: var(--secondary);
    font-size: 1rem;
    display: inline-block;
    margin-top: 10px;
}

.gallery-section .swiper-slide a:hover {
    color: #86d153;
}

.gallery-section .slide-content {
    width: 100%;
    height: 100%;
    position: relative;
}

.gallery-section .slide-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-section .swiper-slide:hover img {
    transform: scale(1.05);
}

.gallery-section .slide-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 25px;
    color: #fff;
    z-index: 2;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.gallery-section .slide-overlay h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 600;
}

/* Navigation Buttons */
.gallery-section .swiper-button-next,
.gallery-section .swiper-button-prev {
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.gallery-section .swiper-button-next:after,
.gallery-section .swiper-button-prev:after {
    font-size: 18px;
}


.gallery-section .swiper-pagination-bullet-active {
    background: var(--primary);
    opacity: 1;
}

@media (max-width: 1024px) {
    .gallery-container .swiper {
        height: 450px;
    }
    
    .gallery-section .swiper-slide {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .gallery-section {
        padding: 40px 0;
    }

    .gallery-title {
        font-size: 1.8rem;
    }

    .gallery-container .swiper {
        height: 400px;
    }

    .gallery-section .swiper-slide {
        height: 350px;
    }

    .gallery-section .slide-overlay {
        padding: 20px;
    }

    .gallery-section .slide-overlay h3 {
        font-size: 1rem;
    }
}



.footer {
    background: linear-gradient(to bottom, #fff, #c13447ab, #c13447d3 10%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.image {
    background: url(img/bg3.jpg);
    background-position: right;
    background-size: cover;
    z-index: -1;
    position: absolute;
    width: 100%;
    height: 100%;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(193, 52, 70, 0.1), transparent);
    pointer-events: none;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    padding-top: 70px;
    position: relative;
    z-index: 1;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, auto);
    gap: 40px;
}

.footer-col {
    margin-bottom: 30px;
    max-width: 400px;
}

.footer-logo {
    width: 250px;
    margin-bottom: 20px;
}

.footer-col p {
    color: #eeeddd;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-col h4 {
    position: relative;
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 30px;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: #fff;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li:not(:last-child) {
    margin-bottom: 15px;
}

.footer-col ul li a {
    color: #eeeddd;
    text-decoration: none;
    transition: 0.3s ease;
}

.footer-col ul li a:hover {
    color: #fff;
    padding-right: 8px;
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #eeeddd;
}

.contact-info li i {
    color: var(--secondary);
    font-size: 1.2rem;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    text-decoration: none;
    transition: 0.3s ease;
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding: 20px;
    margin-top: 50px;
    background: rgba(0, 0, 0, 0.342);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.87);
    margin: 0;
}

@media (max-width: 968px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-col {
        text-align: center;
    }
    
    .footer-col h4::after {
        right: 50%;
        transform: translateX(50%);
    }
    
    .social-links {
        justify-content: center;
    }
    
    .contact-info li {
        justify-content: center;
    }
    .footer-bottom p {
        font-size: 12px;
    }
}