   /* Page Header */
        .page-header {
            margin-top: 70px;
            padding: 140px 0 90px;
            background: linear-gradient(135deg, rgba(10, 10, 30, 0.9), rgba(84, 173, 222, 0.4)), url('https://images.unsplash.com/photo-1516387938699-a93567ec168e?w=1920&h=700&fit=crop');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .page-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 50% 30%, rgba(84, 173, 222, 0.2) 0%, transparent 60%);
            animation: pulseGlow 5s ease-in-out infinite;
        }

        @keyframes pulseGlow {
            0%, 100% { opacity: 0.5; }
            50% { opacity: 1; }
        }

        .page-header h1 {
            font-size: 4.5rem;
            font-weight: bold;
            background: linear-gradient(45deg, #54adde, white, #8b5cf6);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 25px;
            animation: fadeInUp 1s ease-out;
            position: relative;
            z-index: 1;
        }

        .page-header p {
            font-size: 1.5rem;
            color: #d1d5db;
            max-width: 700px;
            margin: 0 auto;
            animation: fadeInUp 1s ease-out 0.2s both;
            position: relative;
            z-index: 1;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Section Styling */
        .section-padding {
            padding: 100px 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title h2 {
            font-size: 3.5rem;
            font-weight: bold;
            margin-bottom: 20px;
            background: linear-gradient(45deg, #54adde, white);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .section-title p {
            color: #9ca3af;
            font-size: 1.3rem;
        }

        /* Contact Info Cards */
        .contact-info-card {
            background: linear-gradient(135deg, rgba(84, 173, 222, 0.15) 0%, rgba(255, 107, 53, 0.15) 100%);
            border: 2px solid #54adde;
            border-radius: 25px;
            padding: 45px 35px;
            text-align: center;
            margin-bottom: 30px;
            transition: all 0.4s;
            height: 100%;
            position: relative;
            overflow: hidden;
        }

        .contact-info-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(84, 173, 222, 0.1) 0%, transparent 70%);
            opacity: 0;
            transition: opacity 0.4s;
        }

        .contact-info-card:hover::before {
            opacity: 1;
        }

        .contact-info-card:hover {
            border-color: #54adde;
            transform: translateY(-15px);
            box-shadow: 0 20px 50px rgba(84, 173, 222, 0.4);
        }

        .contact-info-card .icon {
            width: 90px;
            height: 90px;
            background: linear-gradient(135deg, #54adde, #8b5cf6);
            border-radius: 23px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 2.8rem;
            transition: all 0.4s;
            box-shadow: 0 10px 30px rgba(84, 173, 222, 0.3);
        }

        .contact-info-card:hover .icon {
            transform: scale(1.1) rotate(5deg);
        }

        .contact-info-card h4 {
            font-size: 1.7rem;
            font-weight: bold;
            margin-bottom: 15px;
            color: #54adde;
        }

        .contact-info-card p {
            font-size: 1.15rem;
            color: #d1d5db;
            margin: 0;
        }

        .contact-info-card a {
            color: #d1d5db;
            text-decoration: none;
            transition: color 0.3s;
        }

        .contact-info-card a:hover {
            color: #54adde;
        }

        /* Contact Form Section */
        .contact-form-section {
            background: rgba(0, 0, 0, 0.3);
        }

        .contact-form-box {
            background: linear-gradient(135deg, rgba(84, 173, 222, 0.15) 0%, rgba(255, 107, 53, 0.15) 100%);
            border: 2px solid #54adde;        
            border-radius: 30px;
            padding: 60px 50px;
            max-width: 900px;
            margin: 0 auto;
        }

        .form-group label {
            color: #54adde;
            font-weight: 600;
            margin-bottom: 12px;
            font-size: 1.15rem;
        }

        .form-control {
            background: rgba(0, 0, 0, 0.5);
            border: 2px solid rgba(139, 92, 246, 0.3);
            color: white;
            border-radius: 15px;
            padding: 16px 22px;
            font-size: 1.05rem;
            transition: all 0.3s;
        }

        .form-control:focus {
            background: rgba(0, 0, 0, 0.6);
            border-color: #54adde;
            color: white;
            box-shadow: 0 0 0 0.3rem rgba(84, 173, 222, 0.25);
        }

        .form-control::placeholder {
            color: #9ca3af;
        }

        textarea.form-control {
            min-height: 200px;
            resize: vertical;
        }

        .btn-submit {
            background: linear-gradient(45deg, #54adde, #54adde);
            border: none;
            color: #fffffff7;
            padding: 20px 55px;
            border-radius: 50px;
            font-weight: bold;
            font-size: 1.3rem;
            width: 100%;
            transition: all 0.4s;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            box-shadow: 0 10px 30px rgba(84, 173, 222, 0.4);
        }

        .btn-submit:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 50px rgba(84, 173, 222, 0.6);
            color: #54adde;
        }

        /* Map Section */
        .map-section {
           background: linear-gradient(135deg, rgba(84, 173, 222, 0.15) 0%, rgba(255, 107, 53, 0.15) 100%);
           border: 2px solid #54adde;
           border-radius: 30px;
           padding: 50px 40px;
           text-align: center;
        }

        .map-section h3 {
            font-size: 2.5rem;
            font-weight: bold;
            margin-bottom: 20px;
            background: linear-gradient(45deg, #54adde, white);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .map-section p {
            color: #d1d5db;
            font-size: 1.2rem;
            margin-bottom: 35px;
        }

        .map-container {
            width: 100%;
            height: 500px;
            background: rgba(0, 0, 0, 0.4);
            border: 2px solid rgba(139, 92, 246, 0.3);
            border-radius: 20px;
            overflow: hidden;
        }

        .map-container iframe {
            width: 100%;
            height: 100%;
            border: none;
            filter: brightness(0.9) contrast(1.1);
        }
