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

        /* --- Header Section --- */
        .contact-header {
            text-align: center;
            padding: 80px 20px;
            animation: fadeInUp 0.8s ease-out;
        }

        .contact-header h1 {
          
            font-size: 3rem;
             color: #fff;
            margin-bottom: 10px;
        }
        .contact-header p{
             color: #cfd8dc;
        }

        /* --- Main Container --- */
        .contact-main{
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px 80px;
            display: grid;
            grid-template-columns: 1fr 1.5fr;
            gap: 40px;
        }

        /* --- Contact Info Cards --- */
        .info-panel {
            display: flex;
            flex-direction: column;
            gap: 20px;
            animation: fadeInUp 1s ease-out;
        }

        .info-card {
            background: var(--glass);
            padding: 30px;
            border-radius: 15px;
            border: 1px solid rgba(250, 241, 241, 0.322);
            transition: transform 0.3s ease;
        }

        .info-card:hover {
            transform: scale(1.02);
            /* border-color:rgb(255, 77, 77); */
             box-shadow: 0 5px 15px #cfd8dc;
        
        }

        .info-card h3 {
             color: #fff;
            margin-bottom: 10px;
            font-size: 1.2rem;
        }

        .info-card p{
             color: #cfd8dc;
        }

        /* --- Form Design --- */
        .form-panel {
            background: var(--glass);
            padding: 40px;
            border-radius: 15px;
           border: 1px solid rgba(250, 241, 241, 0.322);
            animation: fadeInUp 1.2s ease-out;
        }

        .input-group {
            margin-bottom: 20px;
            
        }

         label {
            display: block;
            margin-bottom: 8px;
            font-size: 0.9rem;
            color: white;
        }
        .input-group input{
           border: 1px solid rgba(250, 241, 241, 0.322);
              background: rgba(255, 255, 255, 0.08);
        }

        ::placeholder{
           color: #c8cccc;
          
        }
        

        .input-group input, textarea {
            width: 100%;
            padding: 12px;
            background: rgba(255, 255, 255, 0.08);
           border: 1px solid rgba(250, 241, 241, 0.322);
            border-radius: 5px;
            outline: none;
            transition: 0.3s;
        }

        input:focus, textarea:focus {
            border-color: var(--primary-gold);
        }

        button{
            background:rgb(255, 77, 77);
            color: white;
            padding: 15px 30px;
            border: none;
            border-radius: 5px;
            font-weight: 600;
            cursor: pointer;
            transition: 0.3s;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        button a{
            
             color: white;
             text-decoration: none;
        }

        button:hover{
            background: rgb(248, 104, 104);
            
            /* box-shadow: 0 5px 15px rgba(197, 160, 89, 0.4); */
        }
        button:hover a{
             color: white;
            /* box-shadow: 0 5px 15px rgba(197, 160, 89, 0.4); */
        }

        /* --- Map Section --- */
        .map-container {
            width: 100%;
            height: 400px;
            margin-top: 50px;
            border-radius: 15px;
            overflow: hidden;
            border: 1px solid var(--glass);
        }

        iframe {
            width: 100%;
            height: 100%;
            filter: grayscale(1) invert(0.9); /* Styled to match dark theme */
        }

        /* --- Media Queries --- */
        @media (max-width: 992px) {
            .container {
                grid-template-columns: 1fr;
            }
            .contact-header h1 {
                font-size: 2.5rem;
            }
        }

        @media (max-width: 480px) {
            .contact-header {
                padding: 40px 20px;
            }
            .form-panel {
                padding: 20px;
            }
        }