        .map-section {
            width: 100%;
            padding: 0;
            margin: 0;
        }

        .map-container {
            width: 100%;
            height: 450px;
        }

        .map-container iframe {
            width: 100%;
            height: 100%;
            display: block;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .map-container {
                height: 350px;
            }
        }

        @media (max-width: 480px) {
            .map-container {
                height: 300px;
            }
        }

        /* Footer Styles */
        footer {
            background: linear-gradient(135deg, #1a5f7a 0%, #159895 50%, #1a5f7a 100%);
            color: #fff;
            position: relative;
            overflow: hidden;
        }

        /* Decorative Wave */
        .footer-wave {
            position: absolute;
            top: -50px;
            left: 0;
            width: 100%;
            height: 50px;
            background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 50'%3E%3Cpath fill='%231a5f7a' fill-opacity='1' d='M0,25 C240,50 480,0 720,25 C960,50 1200,0 1440,25 L1440,50 L0,50 Z'%3E%3C/path%3E%3C/svg%3E") no-repeat;
            background-size: cover;
        }

        /* Main Footer Content */
        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 60px 40px 30px;
            display: grid;
            grid-template-columns: 2.5fr 1fr 1fr 1.5fr;
            gap: 50px;
        }

        /* Company Info Section */
        .footer-about {
            display: flex;
            flex-direction: column;
            gap: 20px;
            padding-right: 30px;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 15px;
        }

        .footer-logo img {
            height: 70px;
            width: auto;
        }

        .footer-logo h3 {
            font-size: 1.6rem;
            font-weight: 700;
            line-height: 1.3;
        }

        .footer-about p {
            line-height: 1.8;
            opacity: 0.9;
            font-size: 1.05rem;
        }

        /* Social Links */
        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-links a {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 1.3rem;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .social-links a:hover {
            background: #57c4e5;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(87, 196, 229, 0.4);
        }

        /* Footer Columns */
        .footer-column h4 {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-column h4::after {
            content: '';
            position: absolute;
            bottom: 0;
            right: 0;
            width: 40px;
            height: 3px;
            background: #57c4e5;
            border-radius: 2px;
        }

        .footer-column ul {
            list-style: none;
        }

        .footer-column ul li {
            margin-bottom: 15px;
        }

        .footer-column a {
            color: #fff;
            text-decoration: none;
            opacity: 0.9;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 1.05rem;
        }

        .footer-column a:hover {
            opacity: 1;
            color: #57c4e5;
            transform: translateX(-5px);
        }

        /* Contact Info */
        .contact-item {
            display: flex;
            align-items: start;
            gap: 15px;
            margin-bottom: 18px;
            color: #fff;
            opacity: 0.9;
        }

        .contact-item i {
            color: #57c4e5;
            font-size: 1.2rem;
            margin-top: 3px;
            min-width: 22px;
            text-align: center;
        }

        .contact-item span {
            line-height: 1.6;
            font-size: 1.05rem;
        }

        /* Newsletter Section */
        .newsletter {
            background: rgba(255, 255, 255, 0.1);
            padding: 25px;
            border-radius: 10px;
            margin-top: 25px;
        }

        .newsletter h5 {
            font-size: 1.2rem;
            margin-bottom: 15px;
        }

        .newsletter-form {
            display: flex;
            gap: 10px;
            margin-top: 15px;
        }

        .newsletter-form input {
            flex: 1;
            padding: 14px 22px;
            border: none;
            border-radius: 25px;
            background: rgba(255, 255, 255, 0.9);
            color: #1a5f7a;
            font-family: 'Tajawal', sans-serif;
            font-size: 1.05rem;
        }

        .newsletter-form button {
            padding: 14px 30px;
            border: none;
            border-radius: 25px;
            background: #57c4e5;
            color: #1a5f7a;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: 'Tajawal', sans-serif;
            font-size: 1.05rem;
        }

        .newsletter-form button:hover {
            background: #fff;
            transform: translateX(-3px);
            box-shadow: 0 3px 15px rgba(87, 196, 229, 0.4);
        }

        /* Footer Bottom */
        .footer-bottom {
            background: rgba(0, 0, 0, 0.2);
            padding: 25px 0;
            margin-top: 50px;
        }

        .footer-bottom-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        .copyright {
            opacity: 0.9;
            font-size: 1rem;
        }

        /* Developer Credit */
        .developer-credit {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            margin-top: 25px;
        }

        .developer-credit p {
            font-size: 0.95rem;
            opacity: 0.8;
        }

        .developer-credit a {
            color: #57c4e5;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .developer-credit a:hover {
            color: #fff;
            text-decoration: underline;
        }

        /* Certifications */
        .certifications {
            display: flex;
            gap: 25px;
            align-items: center;
            margin-top: 25px;
            padding: 20px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 10px;
        }

        .cert-badge {
            height: 60px;
            opacity: 0.9;
            transition: all 0.3s ease;
        }

        .cert-badge:hover {
            opacity: 1;
            transform: scale(1.1);
        }

        /* Responsive */
        @media (max-width: 1200px) {
            .footer-content {
                grid-template-columns: 2fr 1fr 1fr 1.2fr;
                gap: 40px;
            }
        }

        @media (max-width: 992px) {
            .footer-content {
                grid-template-columns: 1fr 1fr;
                gap: 30px;
            }

            .footer-about {
                grid-column: 1 / -1;
                padding-right: 0;
            }
        }

        @media (max-width: 576px) {
            .footer-content {
                grid-template-columns: 1fr;
                text-align: center;
                padding: 60px 20px 30px;
            }

            .footer-column h4::after {
                right: 50%;
                transform: translateX(50%);
            }

            .social-links {
                justify-content: center;
            }

            .footer-bottom-content {
                flex-direction: column;
                text-align: center;
                padding: 0 20px;
            }

            .newsletter-form {
                flex-direction: column;
            }

            .contact-item {
                justify-content: center;
            }

            .footer-logo {
                justify-content: center;
            }

            .certifications {
                justify-content: center;
                flex-wrap: wrap;
            }
        }

        /* Animations */
        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        .footer-column:hover h4::after {
            animation: float 1s ease-in-out infinite;
        }